16 lines
480 B
CMake
16 lines
480 B
CMake
#---Adding examples subdirectories explicitly
|
|
# and a custom target to for building all basic examples -------------
|
|
|
|
cmake_minimum_required(VERSION 3.8...3.18)
|
|
if(${CMAKE_VERSION} VERSION_LESS 3.12)
|
|
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
|
|
endif()
|
|
|
|
if(GEANT4_BUILD_MULTITHREADED)
|
|
add_subdirectory(B2b)
|
|
|
|
add_custom_target(g4tbb DEPENDS exampleB2bTBB)
|
|
else()
|
|
message("-- G4 Examples: tbb examples require multithreaded build, disable")
|
|
endif()
|