12 lines
432 B
CMake

include_directories( ${Utils_SOURCE_DIRS})
link_directories(${Utils_SOURCE_DIRS})
add_library(IntersectionHandler intersection_handler.cpp)
set_target_properties(IntersectionHandler PROPERTIES VERSION ${PROJECT_VERSION})
target_include_directories(IntersectionHandler PRIVATE .)
target_link_libraries( IntersectionHandler Utils)
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
include(CPack)