mirror of
https://github.com/gwm17/Mask.git
synced 2025-10-02 12:48:49 -04:00
12 lines
287 B
CMake
12 lines
287 B
CMake
add_executable(Kinematics)
|
|
target_include_directories(Kinematics PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..)
|
|
|
|
target_sources(Kinematics PUBLIC
|
|
main.cpp
|
|
)
|
|
|
|
target_link_libraries(Kinematics
|
|
Mask
|
|
)
|
|
|
|
set_target_properties(Kinematics PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${MASK_BINARY_DIR}) |