Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GeoModel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GeoModelDev
GeoModel
Commits
fece4eda
Commit
fece4eda
authored
1 year ago
by
Vakhtang Tsulaia
Browse files
Options
Downloads
Plain Diff
Merge branch 'fullsimlight_fsl_decoupling' into 'master'
Decoupling FullSimLight from FSL. Closes
#80
Closes
#80
See merge request
!198
parents
189088f4
965c9d68
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!198
Decoupling FullSimLight from FSL. Closes #80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+9
-1
9 additions, 1 deletion
CMakeLists.txt
with
9 additions
and
1 deletion
CMakeLists.txt
+
9
−
1
View file @
fece4eda
# Copyright (C) 2002-202
0
CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-202
3
CERN for the benefit of the ATLAS collaboration
# === Preamble ===
cmake_minimum_required
(
VERSION 3.16...3.26
)
...
...
@@ -49,6 +49,7 @@ option(GEOMODEL_BUILD_VISUALIZATION "Enable the build of GeoModelVisualization"
option
(
GEOMODEL_BUILD_GEOMODELG4
"Enable the build of GeoModelG4"
OFF
)
option
(
GEOMODEL_BUILD_FULLSIMLIGHT
"Enable the build of FullSimLight"
OFF
)
option
(
GEOMODEL_BUILD_FULLSIMLIGHT_PROFILING
"Enable FullSimLight profiling targets"
OFF
)
option
(
GEOMODEL_BUILD_FSL
"Enable the build of FSL and FullSimLight"
OFF
)
option
(
GEOMODEL_BUILD_ATLASEXTENSIONS
"Build the Custom ATLAS Extensions"
OFF
)
if
(
GEOMODEL_BUILD_FULLSIMLIGHT_PROFILING
)
...
...
@@ -68,6 +69,7 @@ if(GEOMODEL_BUILD_ALL)
set
(
GEOMODEL_BUILD_TOOLS TRUE
)
set
(
GEOMODEL_BUILD_VISUALIZATION TRUE
)
set
(
GEOMODEL_BUILD_FULLSIMLIGHT TRUE
)
set
(
GEOMODEL_BUILD_FSL TRUE
)
endif
()
if
(
GEOMODEL_BUILD_TOOLS
)
...
...
@@ -88,6 +90,12 @@ endif()
if
(
GEOMODEL_BUILD_FULLSIMLIGHT
)
set
(
GEOMODEL_BUILD_GEOMODELG4 TRUE
)
# FullSimLight needs GeoModelG4
add_subdirectory
(
FullSimLight
)
list
(
APPEND BUILT_PACKAGES
"FullSimLight"
)
endif
()
if
(
GEOMODEL_BUILD_FSL
)
set
(
GEOMODEL_BUILD_GEOMODELG4 TRUE
)
# FullSimLight needs GeoModelG4
add_subdirectory
(
FullSimLight
)
# FSL needs FullSimLight
add_subdirectory
(
FSL
)
list
(
APPEND BUILT_PACKAGES
"FullSimLight"
)
list
(
APPEND BUILT_PACKAGES
"FSL"
)
...
...
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