16 lines
322 B
CMake
16 lines
322 B
CMake
if(BUILD_MATERIAL)
|
|
add_subdirectory(Material)
|
|
endif(BUILD_MATERIAL)
|
|
if(BUILD_MESH)
|
|
add_subdirectory(Mesh)
|
|
endif(BUILD_MESH)
|
|
if(BUILD_PART)
|
|
add_subdirectory(Part)
|
|
endif(BUILD_PART)
|
|
if(BUILD_POINTS)
|
|
add_subdirectory(Points)
|
|
endif(BUILD_POINTS)
|
|
if(BUILD_SKETCHER)
|
|
add_subdirectory(Sketcher)
|
|
endif(BUILD_SKETCHER)
|