Skip to content
Snippets Groups Projects
CMakeLists.txt 769 B
Newer Older
Christoph Hombach's avatar
Christoph Hombach committed
###################################################
#
# 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)
Christoph Hombach's avatar
Christoph Hombach committed
 	
project(DD4hepExample)
 	
#---Testing-------------------------------------------------------------------------
if(BUILD_TESTING)
Christoph Hombach's avatar
Christoph Hombach committed
include(CTest)
enable_testing()
Christoph Hombach's avatar
Christoph Hombach committed
#----------------------------------------------------------------------------------
#
# (un)comment as needed
#
 	
add_subdirectory(AlignDet)

add_subdirectory(CLICSiD)
add_subdirectory(SimpleDetector)