diff options
author | Dimitry <winsvega@mail.ru> | 2016-06-09 01:30:30 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-06-29 05:18:54 +0800 |
commit | a92398a3006af49606b41f16117e3f9fa0c06999 (patch) | |
tree | 996a7a792ebe46c983a4fd83a283f943b793f8eb | |
parent | 55cfba6514c5d53ebd566799ab9a9ee4e60ed2b0 (diff) | |
download | dexon-solidity-a92398a3006af49606b41f16117e3f9fa0c06999.tar dexon-solidity-a92398a3006af49606b41f16117e3f9fa0c06999.tar.gz dexon-solidity-a92398a3006af49606b41f16117e3f9fa0c06999.tar.bz2 dexon-solidity-a92398a3006af49606b41f16117e3f9fa0c06999.tar.lz dexon-solidity-a92398a3006af49606b41f16117e3f9fa0c06999.tar.xz dexon-solidity-a92398a3006af49606b41f16117e3f9fa0c06999.tar.zst dexon-solidity-a92398a3006af49606b41f16117e3f9fa0c06999.zip |
disable tests on windows
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d5bd606..d8994372 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,7 +35,7 @@ if (NOT EMSCRIPTEN) add_subdirectory(lllc) endif() -if (TESTS AND NOT EMSCRIPTEN) +if (TESTS AND NOT EMSCRIPTEN AND NOT WIN32) add_subdirectory(test) endif() |