diff options
author | jhuntley <jhuntley@houghtonassociates.com> | 2015-01-17 05:37:20 +0800 |
---|---|---|
committer | jhuntley <jhuntley@houghtonassociates.com> | 2015-03-05 00:17:45 +0800 |
commit | 62ec556a9d2b308648b089cfbad810cbb50a16b9 (patch) | |
tree | 748228e40b26833d117c873f267d8af7898a6240 | |
parent | 1137e84828c44120cf0300f0b434a8dd20dcc298 (diff) | |
download | dexon-solidity-62ec556a9d2b308648b089cfbad810cbb50a16b9.tar dexon-solidity-62ec556a9d2b308648b089cfbad810cbb50a16b9.tar.gz dexon-solidity-62ec556a9d2b308648b089cfbad810cbb50a16b9.tar.bz2 dexon-solidity-62ec556a9d2b308648b089cfbad810cbb50a16b9.tar.lz dexon-solidity-62ec556a9d2b308648b089cfbad810cbb50a16b9.tar.xz dexon-solidity-62ec556a9d2b308648b089cfbad810cbb50a16b9.tar.zst dexon-solidity-62ec556a9d2b308648b089cfbad810cbb50a16b9.zip |
Mingw cmake updates. Make sure Boost_INCLUDE_DIRS is included for each library using boost. When installing libraries, don't forget to copy DLLs, add target 'RUNTIME DESTINATION bin'.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b9dc603..e60522a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,6 +27,6 @@ endif() target_link_libraries(${EXECUTABLE} evmcore) target_link_libraries(${EXECUTABLE} devcore) -install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) +install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} ) |