diff options
author | Gav Wood <i@gavwood.com> | 2014-07-06 19:13:37 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-07-06 19:13:37 +0800 |
commit | 5c559038083caf3d145277773c0f3715e94d3d3c (patch) | |
tree | 04cdfbb9302e5da9b53e34bda58f77361751c4da | |
parent | 2ffbe1c5c8432ef16dea10625f778d8d0f19e0e4 (diff) | |
download | dexon-solidity-5c559038083caf3d145277773c0f3715e94d3d3c.tar.gz dexon-solidity-5c559038083caf3d145277773c0f3715e94d3d3c.tar.zst dexon-solidity-5c559038083caf3d145277773c0f3715e94d3d3c.zip |
Build fixes.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 49e71707..97eaea7a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ target_link_libraries(${EXECUTABLE} lll) target_link_libraries(${EXECUTABLE} evmface) target_link_libraries(${EXECUTABLE} ethential) -if (${TARGET_PLATFORM} STREQUAL "w64") +if ("${TARGET_PLATFORM}" STREQUAL "w64") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++") target_link_libraries(${EXECUTABLE} gcc) target_link_libraries(${EXECUTABLE} gdi32) |