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

CMakeLists.txt « ArcWelderInverseProcessor - github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2111d1b9b574407122930062ee922897d404c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
project(ArcWelderInverseProcessor C CXX)

# add definitions from the GcodeProcessorLib and ArcWelder libraries
add_definitions(${GcodeProcessorLib_DEFINITIONS} )
#add_definitions("-DHAS_GENERATED_VERSION")

# Include the GcodeProcessorLib and ArcWelder's directories
include_directories(${GcodeProcessorLib_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})
# change the executable name to ArcWelder or ArcStraightener.exe
set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "ArcStraightener")

install(
    TARGETS ${PROJECT_NAME}
    DESTINATION bin
)

# specify linking to the GcodeProcessorLib and ArcWelder libraries
target_link_libraries(${PROJECT_NAME} GcodeProcessorLib TCLAP)