11 lines
239 B
Text
11 lines
239 B
Text
|
cmake_minimum_required(VERSION 3.15.0)
|
||
|
|
||
|
if(BUILD_DEMO_VIEWER)
|
||
|
message(STATUS "Building demo viewer")
|
||
|
add_subdirectory(viewer)
|
||
|
endif()
|
||
|
|
||
|
if(BUILD_DEMO_CPP)
|
||
|
message(STATUS "Building c++ demo app")
|
||
|
add_subdirectory(c++)
|
||
|
endif()
|