From debf9ff5b86bb2cfcfbd3ebaad99703f2b41fa47 Mon Sep 17 00:00:00 2001 From: Bob Summerwill Date: Wed, 6 Apr 2016 14:47:38 -0700 Subject: [PATCH] Added missing CMake conditional around the Solidity tests. --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a843ab894..35d21fa65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,10 +29,14 @@ configure_project(TESTS) add_subdirectory(libevmasm) add_subdirectory(libsolidity) add_subdirectory(solc) + if (NOT EMSCRIPTEN) add_subdirectory(liblll) - add_subdirectory(test) add_subdirectory(lllc) endif() +if (TESTS AND NOT EMSCRIPTEN) + add_subdirectory(test) +endif() + # TODO installation and packaging rules