summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorckgt <ckarlsson25@gmail.com>2019-06-14 10:03:06 -0400
committerGitHub <noreply@github.com>2019-06-14 10:03:06 -0400
commitd061b62bacd201a89494a16702d53014c5b4f6e1 (patch)
tree375fc4e8ab8f1a2b475ca494fdeffcd6a6c32ae1 /CMakeLists.txt
parentd1b9b9bdc8275c51c708a666dd465fcb909583fa (diff)
parent0932ac6d0afa2e94686fd936db0f2e7aadfb5779 (diff)
Merge pull request #11 from Joe-DN/master
Added ARCHIVE for TARGET, was failing to build
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
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})