Skip to content
Snippets Groups Projects
CMakeLists.txt 593 B
Newer Older
###################################################
#
#  Simple CMakeList.txt file that allows to 
#  build all DD4hep examples in one go, e.g.
#    
#  . ./bin/thisDD4hep.sh 
#  cd examples ;
#  mkdir build ; cd build
#  cmake ..
# 
# F.Gaede, DESY, 2013
#
##################################################

cmake_minimum_required(VERSION 2.8.3 FATAL_ERROR)

project(DD4hepExample)

#
# (un)comment as needed 
#
add_subdirectory(ILDExDet)

add_subdirectory(ILDExSimu)

add_subdirectory(CLICSiD)

add_subdirectory(noviceN04)

#---- does not build on mac ...
#add_subdirectory(Segmentation)