12 lines
432 B
CMake
Raw Normal View History

2022-11-10 17:17:24 +01:00
include_directories( ${Utils_SOURCE_DIRS})
link_directories(${Utils_SOURCE_DIRS})
2022-11-03 08:54:35 +01:00
add_library(IntersectionHandler intersection_handler.cpp)
set_target_properties(IntersectionHandler PROPERTIES VERSION ${PROJECT_VERSION})
target_include_directories(IntersectionHandler PRIVATE .)
2022-11-10 17:17:24 +01:00
target_link_libraries( IntersectionHandler Utils)
2022-11-03 08:54:35 +01:00
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
include(CPack)