diff options
| author | j <joe@rishi.net> | 2019-06-14 14:08:46 +0100 |
|---|---|---|
| committer | j <joe@rishi.net> | 2019-06-14 14:08:46 +0100 |
| commit | 0932ac6d0afa2e94686fd936db0f2e7aadfb5779 (patch) | |
| tree | 375fc4e8ab8f1a2b475ca494fdeffcd6a6c32ae1 /CMakeLists.txt | |
| parent | d1b9b9bdc8275c51c708a666dd465fcb909583fa (diff) | |
Added ARCHIVE for TARGET, was failing to build
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 05eb9f2..31b17e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,6 +51,7 @@ install(TARGETS ${PROJECT_NAME} EXPORT NemaTodeConfig RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} PUBLIC_HEADER DESTINATION include ) @@ -75,4 +76,4 @@ target_link_libraries(demo_advanced ${PROJECT_NAME}) # build demo_simple add_executable(demo_simple demo_simple.cpp) -target_link_libraries(demo_simple ${PROJECT_NAME})
\ No newline at end of file +target_link_libraries(demo_simple ${PROJECT_NAME}) |
