Skip to content
Snippets Groups Projects
Commit 8fd7ae5c authored by lintao@ihep.ac.cn's avatar lintao@ihep.ac.cn
Browse files

split into several packages.

parent bc18e29b
No related branches found
No related tags found
No related merge requests found
gaudi_subdir(Simulation v0r0)
find_package(Geant4)
include(${Geant4_USE_FILE})
# DetSimInterface (headers only)
set(DetSimInterface_srcs
src/DetSimInterface/*.cpp
)
gaudi_add_library(DetSimInterfaces ${DetSimInterface_srcs}
INCLUDE_DIRS include
PUBLIC_HEADERS include/DetSimInterface
)
# DetSimCore module
set(DetSimCore_srcs
src/DetSimCore/*.cpp
)
gaudi_add_module(DetSimCore ${DetSimCore_srcs}
INCLUDE_DIRS DetSimInterfaces GaudiKernel Geant4
LINK_LIBRARIES DetSimInterfaces GaudiKernel Geant4
)
gaudi_subdir(DetSimCore v0r0)
gaudi_depends_on_subdirs(
Simulation/DetSimInterface
)
find_package(Geant4)
include(${Geant4_USE_FILE})
set(DetSimCore_srcs
src/*.cpp
)
gaudi_add_module(DetSimCore ${DetSimCore_srcs}
INCLUDE_DIRS DetSimInterface GaudiKernel Geant4
LINK_LIBRARIES DetSimInterface GaudiKernel Geant4
)
gaudi_subdir(DetSimInterface v0r0)
# DetSimInterface (headers only)
set(DetSimInterface_srcs
src/*.cpp
)
gaudi_add_library(DetSimInterface ${DetSimInterface_srcs}
PUBLIC_HEADERS DetSimInterface
LINK_LIBRARIES GaudiKernel
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment