Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFormerLurker <hochgebe@gmail.com>2020-05-12 21:07:00 +0300
committerFormerLurker <hochgebe@gmail.com>2020-05-12 21:07:00 +0300
commite78d62dc63ac47f90934367318e4c04b71e8c094 (patch)
tree5663592d9d0c09de54c7e5514c262e67ac58c4bb /GcodeProcessorLib
parent3f28fa125bbed6da8db3c2563a9fd599d5c9c026 (diff)
Add install to cmakelists
Diffstat (limited to 'GcodeProcessorLib')
-rw-r--r--GcodeProcessorLib/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/GcodeProcessorLib/CMakeLists.txt b/GcodeProcessorLib/CMakeLists.txt
index 7df5acc..16cf7a7 100644
--- a/GcodeProcessorLib/CMakeLists.txt
+++ b/GcodeProcessorLib/CMakeLists.txt
@@ -9,6 +9,8 @@ include(sourcelist.cmake)
# Add a library using our GcodeProcessorLibSources variable from our sourcelist file
add_library(${PROJECT_NAME} STATIC ${GcodeProcessorLibSources})
+install(TARGETS ${PROJECT_NAME})
+
# Required on Unix OS family to be able to be linked into shared libraries.
set_target_properties(${PROJECT_NAME}
PROPERTIES POSITION_INDEPENDENT_CODE ON)