Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DD4hep
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cepc
externals
mirroring
DD4hep
Commits
70ae4660
Commit
70ae4660
authored
12 years ago
by
Frank Gaede
Browse files
Options
Downloads
Patches
Plain Diff
- added option DD4HEP_WITH_LCIO (default on) to allow to build
without LCIO (and without ILD examples)
parent
3e5435d2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+5
-0
5 additions, 0 deletions
CMakeLists.txt
with
5 additions
and
0 deletions
CMakeLists.txt
+
5
−
0
View file @
70ae4660
...
...
@@ -9,6 +9,7 @@ set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
option
(
DD4HEP_USE_XERCESC
"Enable 'Detector Builders' based on XercesC"
OFF
)
option
(
DD4HEP_USE_PYROOT
"Enable 'Detector Builders' based on PyROOT"
ON
)
option
(
DD4HEP_WITH_GEANT4
"Enable the simulation part based on Geant4"
OFF
)
option
(
DD4HEP_WITH_LCIO
"Build ILD examples with LCIO - builds LCIO as external project or uses pre-installed"
ON
)
find_package
(
ROOT REQUIRED
)
if
(
DD4HEP_USE_XERCESC
)
...
...
@@ -36,10 +37,14 @@ add_subdirectory(DDExamples/UtilityApps)
add_subdirectory
(
DDExamples/AlignDet
)
add_subdirectory
(
DDExamples/CLICSiD
)
## --- ILD examples -----
if
(
DD4HEP_WITH_LCIO
)
add_subdirectory
(
DDExamples/ILDExDet
)
add_subdirectory
(
DDExamples/ILDExReco
)
add_subdirectory
(
DDExamples/ILDExTest
)
endif
()
if
(
DD4HEP_WITH_GEANT4
)
add_subdirectory
(
DDExamples/CLICSiDSimu
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment