Warning, /acts/Core/src/TrackFitting/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 target_sources(
0002 ActsCore
0003 PRIVATE
0004 KalmanFitterError.cpp
0005 GainMatrixUpdater.cpp
0006 GainMatrixSmoother.cpp
0007 GlobalChiSquareFitterError.cpp
0008 GsfError.cpp
0009 GsfUtils.cpp
0010 BetheHeitlerApprox.cpp
0011 GsfMixtureReduction.cpp
0012 GlobalChiSquareFitter.cpp
0013 MbfSmoother.cpp
0014 )
0015
0016 foreach(DIM RANGE 1 6)
0017 set(dim_file ${CMAKE_CURRENT_BINARY_DIR}/GainMatrixUpdaterImpl${DIM}.cpp)
0018 configure_file(
0019 ${CMAKE_CURRENT_SOURCE_DIR}/GainMatrixUpdaterImpl.cpp.in
0020 ${dim_file}
0021 @ONLY
0022 )
0023
0024 set_source_files_properties(
0025 ${dim_file}
0026 PROPERTIES
0027 COMPILE_DEFINITIONS ACTS_GAIN_MATRIX_UPDATER_INSTANTIATE=${DIM}
0028 )
0029 target_sources(ActsCore PRIVATE ${dim_file})
0030 endforeach()