7 lines
298 B
CMake
7 lines
298 B
CMake
add_library(IntersectionHandler intersection_handler.cpp)
|
|
set_target_properties(IntersectionHandler PROPERTIES VERSION ${PROJECT_VERSION})
|
|
target_include_directories(IntersectionHandler PRIVATE .)
|
|
|
|
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
|
|
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
|
|
include(CPack) |