From 825c5c033d881a5c78feb3aaa2e90b820549024a Mon Sep 17 00:00:00 2001 From: Nathan Wilcox Date: Sat, 26 Jul 2014 12:19:28 -0700 Subject: [PATCH] Also install libqethereum to fix #260. Warning: I'm doing mimicry cut-and-paste and have no idea of the implications for other platforms. --- libqethereum/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libqethereum/CMakeLists.txt b/libqethereum/CMakeLists.txt index f9be5751f..00ac6b5d6 100644 --- a/libqethereum/CMakeLists.txt +++ b/libqethereum/CMakeLists.txt @@ -99,12 +99,11 @@ elseif ("${TARGET_PLATFORM}" STREQUAL "w64") target_link_libraries(${EXECUTABLE} boost_thread_win32-mt-s) target_link_libraries(${EXECUTABLE} Qt5PlatformSupport) set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS) -elseif (UNIX) else () target_link_libraries(${EXECUTABLE} boost_system) target_link_libraries(${EXECUTABLE} boost_filesystem) find_package(Threads REQUIRED) target_link_libraries(${EXECUTABLE} ${CMAKE_THREAD_LIBS_INIT}) - install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ) + install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) endif ()