Files
geant4/examples/extended/parallel/TBB/CMakeLists.txt
T
2016-06-30 14:12:05 +02:00

13 lines
368 B
CMake

#---Adding examples subdirectories explicitly
# and a custom target to for building all basic examples -------------
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
if(GEANT4_BUILD_MULTITHREADED)
add_subdirectory(B2b)
add_custom_target(g4tbb DEPENDS exampleB2bTBB)
else()
message("-- G4 Examples: tbb examples require multithreaded build, disable")
endif()