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:
Diffstat (limited to 'ArcWelderInverseProcessor/CMakeLists.txt')
-rw-r--r--ArcWelderInverseProcessor/CMakeLists.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/ArcWelderInverseProcessor/CMakeLists.txt b/ArcWelderInverseProcessor/CMakeLists.txt
index f2c1c5b..b6b4938 100644
--- a/ArcWelderInverseProcessor/CMakeLists.txt
+++ b/ArcWelderInverseProcessor/CMakeLists.txt
@@ -6,14 +6,18 @@ project(ArcWelderInverseProcessor C CXX)
add_definitions(${GcodeProcessorLib_DEFINITIONS} ${ArcWelder_DEFINITIONS})
# Include the GcodeProcessorLib and ArcWelder's directories
-include_directories(${GcodeProcessorLib_INCLUDE_DIRS} ${ArcWelder_INCLUDE_DIRS})
+include_directories(${GcodeProcessorLib_INCLUDE_DIRS} ${ArcWelder_INCLUDE_DIRS} ${TCLAP_INCLUDE_DIRS})
# include sourcelist.cmake, which contains our source list and exposes it as the
# ArcWelderConsoleSources variable
include(sourcelist.cmake)
# Add an executable our ArcWelderConsoleSources variable from our sourcelist file
-add_executable(${PROJECT_NAME} ${ArcWelderInverseProcessorSources})
+add_executable(
+ ${PROJECT_NAME}
+ ${ArcWelderInverseProcessorSources}
+)
+set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "ArcStraightener")
install(
TARGETS ${PROJECT_NAME}
@@ -22,4 +26,4 @@ install(
# specify linking to the GcodeProcessorLib and ArcWelder libraries
-target_link_libraries(${PROJECT_NAME} GcodeProcessorLib ArcWelder)
+target_link_libraries(${PROJECT_NAME} TCLAP GcodeProcessorLib ArcWelder)