16 lines
483 B
CMake
16 lines
483 B
CMake
# Examples subdirectory
|
|
set(DETECTBARINTERSECTION_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/..")
|
|
|
|
add_subdirectory(bar_intersection_demo)
|
|
|
|
# visualization_demo 仅在 Windows 平台编译
|
|
if(WIN32)
|
|
add_subdirectory(visualization_demo)
|
|
endif()
|
|
|
|
message(STATUS "")
|
|
message(STATUS "Examples Configuration:")
|
|
message(STATUS " Build Type: ${DETECTBARINTERSECTION_BUILD_DESCRIPTION}")
|
|
message(STATUS " DetectBarIntersection Root: ${DETECTBARINTERSECTION_ROOT}")
|
|
message(STATUS "")
|