forked from acts-project/acts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reverting non c++ files to before clang format
- Loading branch information
1 parent
cad9190
commit 9935609
Showing
4 changed files
with
176 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
target_sources(ActsCore PRIVATE CombinatorialKalmanFilterError | ||
.cpp MeasurementSelector.cpp FasTrackConnector.cpp) | ||
target_sources( | ||
ActsCore | ||
PRIVATE | ||
CombinatorialKalmanFilterError.cpp | ||
MeasurementSelector.cpp | ||
FasTrackConnector.cpp | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,31 @@ | ||
add_library(ActsExamplesTrackFinding SHARED src / | ||
AmbiguityResolutionAlgorithm.cpp src / SeedingAlgorithm.cpp src / | ||
SeedingOrthogonalAlgorithm.cpp src / SpacePointMaker.cpp src / | ||
TrackFindingAlgorithm.cpp src / | ||
TrackFindingAlgorithmFunction.cpp src / | ||
HoughTransformSeeder.cpp src / | ||
TrackParamsEstimationAlgorithm.cpp src / SeedingFTFAlgorithm.cpp) | ||
add_library( | ||
ActsExamplesTrackFinding SHARED | ||
src/AmbiguityResolutionAlgorithm.cpp | ||
src/SeedingAlgorithm.cpp | ||
src/SeedingOrthogonalAlgorithm.cpp | ||
src/SpacePointMaker.cpp | ||
src/TrackFindingAlgorithm.cpp | ||
src/TrackFindingAlgorithmFunction.cpp | ||
src/HoughTransformSeeder.cpp | ||
src/TrackParamsEstimationAlgorithm.cpp | ||
src/SeedingFTFAlgorithm.cpp | ||
) | ||
|
||
target_include_directories( | ||
ActsExamplesTrackFinding PUBLIC | ||
$<BUILD_INTERFACE : ${CMAKE_CURRENT_SOURCE_DIR} / include>) | ||
target_include_directories( | ||
ActsExamplesTrackFinding | ||
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> | ||
) | ||
|
||
target_link_libraries( | ||
ActsExamplesTrackFinding PUBLIC ActsCore ActsExamplesFramework | ||
ActsExamplesIoJson ActsExamplesMagneticField) | ||
target_link_libraries( | ||
ActsExamplesTrackFinding | ||
PUBLIC | ||
ActsCore | ||
ActsExamplesFramework | ||
ActsExamplesIoJson | ||
ActsExamplesMagneticField | ||
) | ||
|
||
install(TARGETS ActsExamplesTrackFinding LIBRARY DESTINATION ${ | ||
CMAKE_INSTALL_LIBDIR}) | ||
install( | ||
TARGETS ActsExamplesTrackFinding | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.