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 | d82b8c2738609fdcc4254a72519516bde03e147e (patch) | |
tree | b94e065dd17b299a6f4ae67a89b97ef1f9ed8b45 /CMakeLists.txt | |
parent | de671024b5cb72b2f4e7dee636de3581a785db3b (diff) | |
download | dexon-solidity-d82b8c2738609fdcc4254a72519516bde03e147e.tar.gz dexon-solidity-d82b8c2738609fdcc4254a72519516bde03e147e.tar.zst dexon-solidity-d82b8c2738609fdcc4254a72519516bde03e147e.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'.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2b1059c6..b42b6e5c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,6 +30,6 @@ target_link_libraries(${EXECUTABLE} evmcore) target_link_libraries(${EXECUTABLE} devcore) target_link_libraries(${EXECUTABLE} devcrypto) -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} ) |