diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d356426af..d426d415b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -116,14 +116,10 @@ set(EICRECON_VERBOSE_CMAKE OFF) # Add CMake additional functionality: include(cmake/print_functions.cmake) # Helpers to print fancy headers, file names, etc -include(cmake/print_subdirectory_tree.cmake) # Prints processed subdirectories include(cmake/jana_plugin.cmake) # Add common settings for plugins list (APPEND CMAKE_MODULE_PATH ${EICRECON_SOURCE_DIR}/cmake) # Find Find.cmake -# ------------------------------------------------------------------ -print_grand_header(" B U I L D E I C R E C O N P A R T S ") -# ------------------------------------------------------------------ add_subdirectory( src/services ) add_subdirectory( src/algorithms ) add_subdirectory( src/benchmarks ) @@ -134,14 +130,6 @@ add_subdirectory( src/scripts ) add_subdirectory( src/tests ) add_subdirectory( src/utilities ) - - -# Print what we had built -print_header("CMake processed subdirectories:") -print_subdirectory_tree() -message(STATUS "\n-------------------------------") - - # Install all cmake helpers include(CMakePackageConfigHelpers) configure_package_config_file(cmake/EICreconConfig.cmake.in cmake/EICreconConfig.cmake INSTALL_DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/cmake/EICrecon) diff --git a/cmake/jana_plugin.cmake b/cmake/jana_plugin.cmake index 0e811e5cd3..c557e05d53 100644 --- a/cmake/jana_plugin.cmake +++ b/cmake/jana_plugin.cmake @@ -149,13 +149,6 @@ macro(plugin_glob_all _name) message(STATUS "plugin_glob_all:${_name}: PLUGIN_RLTV_PATH ${PLUGIN_RELATIVE_PATH}") endif() - # To somehow control GLOB lets at least PRINT files we are going to compile: - message(STATUS "Source files:") - print_file_names(" " ${PLUGIN_SRC_FILES}) # Prints source files - message(STATUS "Plugin-main file is: ${PLUGIN_CC_FILE}") - message(STATUS "Header files:") - print_file_names(" " ${HEADER_FILES}) # Prints header files - endmacro() diff --git a/cmake/print_subdirectory_tree.cmake b/cmake/print_subdirectory_tree.cmake deleted file mode 100644 index 52e08cdced..0000000000 --- a/cmake/print_subdirectory_tree.cmake +++ /dev/null @@ -1,25 +0,0 @@ -macro(print_subdirectory_tree) - get_property(lvl1_dirs DIRECTORY PROPERTY SUBDIRECTORIES) - foreach(lvl1_dir ${lvl1_dirs}) - # Here we have basic directories like : programs, plugins, etc. - get_filename_component(lvl1_dir_name ${lvl1_dir} NAME) - message(STATUS "${lvl1_dir_name}") - - # Go deeper) - get_property(lvl2_dirs DIRECTORY ${lvl1_dir} PROPERTY SUBDIRECTORIES) - foreach(lvl2_dir ${lvl2_dirs}) - get_filename_component(lvl2_dir_name ${lvl2_dir} NAME) - message(STATUS " ${lvl2_dir_name}") - - #if it is plugins directory go even deeper - if ("${lvl1_dir_name}" STREQUAL "plugins") - get_property(lvl3_dirs DIRECTORY ${lvl2_dir} PROPERTY SUBDIRECTORIES) - foreach(lvl3_dir ${lvl3_dirs}) - get_filename_component(lvl3_dir_name ${lvl3_dir} NAME) - message(STATUS " ${lvl3_dir_name}") - endforeach() - endif() - endforeach() - endforeach() - -endmacro() diff --git a/docs/design/cmake.md b/docs/design/cmake.md index b831c9c93b..600b879917 100644 --- a/docs/design/cmake.md +++ b/docs/design/cmake.md @@ -23,7 +23,6 @@ Recommended CMake for a plugin: cmake_minimum_required(VERSION 3.16) get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/docs/howto/make_plugin.md b/docs/howto/make_plugin.md index e57245c12d..472bc0d65f 100644 --- a/docs/howto/make_plugin.md +++ b/docs/howto/make_plugin.md @@ -383,7 +383,6 @@ cmake_minimum_required(VERSION 3.16) # Automatically set plugin name the same as the direcotry name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/algorithms/CMakeLists.txt b/src/algorithms/CMakeLists.txt index a5f8e8100f..3bf0168d05 100644 --- a/src/algorithms/CMakeLists.txt +++ b/src/algorithms/CMakeLists.txt @@ -1,7 +1,5 @@ cmake_minimum_required(VERSION 3.16) -print_header(">>>> D I R E C T O R Y : algorithms <<<<") # Fancy printing - add_subdirectory( calorimetry ) add_subdirectory( tracking ) add_subdirectory( digi ) diff --git a/src/algorithms/calorimetry/CMakeLists.txt b/src/algorithms/calorimetry/CMakeLists.txt index 8d602830c8..6b116f3ccf 100644 --- a/src/algorithms/calorimetry/CMakeLists.txt +++ b/src/algorithms/calorimetry/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) set(PLUGIN_NAME "algorithms_calorimetry") -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/algorithms/digi/CMakeLists.txt b/src/algorithms/digi/CMakeLists.txt index ae7f52a518..87f512e08a 100644 --- a/src/algorithms/digi/CMakeLists.txt +++ b/src/algorithms/digi/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) set(PLUGIN_NAME "algorithms_digi") -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/algorithms/reco/CMakeLists.txt b/src/algorithms/reco/CMakeLists.txt index 3914e67a93..3487ad3f02 100644 --- a/src/algorithms/reco/CMakeLists.txt +++ b/src/algorithms/reco/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) set(PLUGIN_NAME "algorithms_reco") -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/algorithms/tracking/CMakeLists.txt b/src/algorithms/tracking/CMakeLists.txt index 563cba9cb5..132646bab5 100644 --- a/src/algorithms/tracking/CMakeLists.txt +++ b/src/algorithms/tracking/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) set(PLUGIN_NAME "algorithms_tracking") -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/benchmarks/detectors/BEMCcheck/CMakeLists.txt b/src/benchmarks/detectors/BEMCcheck/CMakeLists.txt index d9d6f1ec85..a934eb1669 100644 --- a/src/benchmarks/detectors/BEMCcheck/CMakeLists.txt +++ b/src/benchmarks/detectors/BEMCcheck/CMakeLists.txt @@ -6,8 +6,6 @@ project(BEMCcheck) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/benchmarks/detectors/RPOTScheck/CMakeLists.txt b/src/benchmarks/detectors/RPOTScheck/CMakeLists.txt index bacb2f0b7c..80759be6f9 100644 --- a/src/benchmarks/detectors/RPOTScheck/CMakeLists.txt +++ b/src/benchmarks/detectors/RPOTScheck/CMakeLists.txt @@ -6,8 +6,6 @@ project(RPOTScheck) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/benchmarks/reconstruction/TRACKINGcheck/CMakeLists.txt b/src/benchmarks/reconstruction/TRACKINGcheck/CMakeLists.txt index ce61f05d55..5f5d68c0e8 100644 --- a/src/benchmarks/reconstruction/TRACKINGcheck/CMakeLists.txt +++ b/src/benchmarks/reconstruction/TRACKINGcheck/CMakeLists.txt @@ -6,8 +6,6 @@ project(TRACKINGcheck) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/benchmarks/reconstruction/femc_studies/CMakeLists.txt b/src/benchmarks/reconstruction/femc_studies/CMakeLists.txt index cf5952f664..4e440a4883 100644 --- a/src/benchmarks/reconstruction/femc_studies/CMakeLists.txt +++ b/src/benchmarks/reconstruction/femc_studies/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/benchmarks/reconstruction/lfhcal_studies/CMakeLists.txt b/src/benchmarks/reconstruction/lfhcal_studies/CMakeLists.txt index cf5952f664..4e440a4883 100644 --- a/src/benchmarks/reconstruction/lfhcal_studies/CMakeLists.txt +++ b/src/benchmarks/reconstruction/lfhcal_studies/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/benchmarks/reconstruction/tof_efficiency/CMakeLists.txt b/src/benchmarks/reconstruction/tof_efficiency/CMakeLists.txt index 749b26a52f..5e9e71a7bb 100644 --- a/src/benchmarks/reconstruction/tof_efficiency/CMakeLists.txt +++ b/src/benchmarks/reconstruction/tof_efficiency/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/benchmarks/reconstruction/tracking_efficiency/CMakeLists.txt b/src/benchmarks/reconstruction/tracking_efficiency/CMakeLists.txt index 749b26a52f..5e9e71a7bb 100644 --- a/src/benchmarks/reconstruction/tracking_efficiency/CMakeLists.txt +++ b/src/benchmarks/reconstruction/tracking_efficiency/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/benchmarks/reconstruction/tracking_occupancy/CMakeLists.txt b/src/benchmarks/reconstruction/tracking_occupancy/CMakeLists.txt index cf5952f664..4e440a4883 100644 --- a/src/benchmarks/reconstruction/tracking_occupancy/CMakeLists.txt +++ b/src/benchmarks/reconstruction/tracking_occupancy/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/detectors/B0ECAL/CMakeLists.txt b/src/detectors/B0ECAL/CMakeLists.txt index d1abc6d9d4..0f729d9f45 100644 --- a/src/detectors/B0ECAL/CMakeLists.txt +++ b/src/detectors/B0ECAL/CMakeLists.txt @@ -6,8 +6,6 @@ project(B0ECAL) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/detectors/B0TRK/CMakeLists.txt b/src/detectors/B0TRK/CMakeLists.txt index 8dd68ab40b..f56f6902dd 100644 --- a/src/detectors/B0TRK/CMakeLists.txt +++ b/src/detectors/B0TRK/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/BEMC/CMakeLists.txt b/src/detectors/BEMC/CMakeLists.txt index 09f6331042..8f2461e8fe 100644 --- a/src/detectors/BEMC/CMakeLists.txt +++ b/src/detectors/BEMC/CMakeLists.txt @@ -6,8 +6,6 @@ project(BEMC) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/detectors/BHCAL/CMakeLists.txt b/src/detectors/BHCAL/CMakeLists.txt index bc82d306ae..7b8187a1c3 100644 --- a/src/detectors/BHCAL/CMakeLists.txt +++ b/src/detectors/BHCAL/CMakeLists.txt @@ -6,7 +6,6 @@ project(BHCAL) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/detectors/BTOF/CMakeLists.txt b/src/detectors/BTOF/CMakeLists.txt index 8dd68ab40b..f56f6902dd 100644 --- a/src/detectors/BTOF/CMakeLists.txt +++ b/src/detectors/BTOF/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/BTRK/CMakeLists.txt b/src/detectors/BTRK/CMakeLists.txt index 0e9280578f..06ec87d53c 100644 --- a/src/detectors/BTRK/CMakeLists.txt +++ b/src/detectors/BTRK/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/BVTX/CMakeLists.txt b/src/detectors/BVTX/CMakeLists.txt index 16af9b9ecb..caede6f30f 100644 --- a/src/detectors/BVTX/CMakeLists.txt +++ b/src/detectors/BVTX/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/DRICH/CMakeLists.txt b/src/detectors/DRICH/CMakeLists.txt index 3c793063d5..340964ce0d 100644 --- a/src/detectors/DRICH/CMakeLists.txt +++ b/src/detectors/DRICH/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/ECGEM/CMakeLists.txt b/src/detectors/ECGEM/CMakeLists.txt index aed70f9625..c6cff033bb 100644 --- a/src/detectors/ECGEM/CMakeLists.txt +++ b/src/detectors/ECGEM/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/ECTOF/CMakeLists.txt b/src/detectors/ECTOF/CMakeLists.txt index 8dd68ab40b..f56f6902dd 100644 --- a/src/detectors/ECTOF/CMakeLists.txt +++ b/src/detectors/ECTOF/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/ECTRK/CMakeLists.txt b/src/detectors/ECTRK/CMakeLists.txt index aed70f9625..c6cff033bb 100644 --- a/src/detectors/ECTRK/CMakeLists.txt +++ b/src/detectors/ECTRK/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/EEMC/CMakeLists.txt b/src/detectors/EEMC/CMakeLists.txt index d4c716d351..67592a654c 100644 --- a/src/detectors/EEMC/CMakeLists.txt +++ b/src/detectors/EEMC/CMakeLists.txt @@ -4,8 +4,6 @@ cmake_minimum_required(VERSION 3.16) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/EHCAL/CMakeLists.txt b/src/detectors/EHCAL/CMakeLists.txt index 94f259eed4..32db9314c3 100644 --- a/src/detectors/EHCAL/CMakeLists.txt +++ b/src/detectors/EHCAL/CMakeLists.txt @@ -6,7 +6,6 @@ project(EHCAL) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/detectors/FEMC/CMakeLists.txt b/src/detectors/FEMC/CMakeLists.txt index 0c207e2836..f7f665cda3 100644 --- a/src/detectors/FEMC/CMakeLists.txt +++ b/src/detectors/FEMC/CMakeLists.txt @@ -5,7 +5,6 @@ project(FEMC) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/detectors/FHCAL/CMakeLists.txt b/src/detectors/FHCAL/CMakeLists.txt index 309a8e2f1c..9a8c05a973 100644 --- a/src/detectors/FHCAL/CMakeLists.txt +++ b/src/detectors/FHCAL/CMakeLists.txt @@ -6,8 +6,6 @@ project(FHCAL) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/detectors/FOFFMTRK/CMakeLists.txt b/src/detectors/FOFFMTRK/CMakeLists.txt index aed70f9625..c6cff033bb 100644 --- a/src/detectors/FOFFMTRK/CMakeLists.txt +++ b/src/detectors/FOFFMTRK/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/MPGD/CMakeLists.txt b/src/detectors/MPGD/CMakeLists.txt index aed70f9625..c6cff033bb 100644 --- a/src/detectors/MPGD/CMakeLists.txt +++ b/src/detectors/MPGD/CMakeLists.txt @@ -2,8 +2,6 @@ # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/detectors/RPOTS/CMakeLists.txt b/src/detectors/RPOTS/CMakeLists.txt index 40aedf1677..704c5e7ef2 100644 --- a/src/detectors/RPOTS/CMakeLists.txt +++ b/src/detectors/RPOTS/CMakeLists.txt @@ -6,8 +6,6 @@ project(RPOTS) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/detectors/ZDC/CMakeLists.txt b/src/detectors/ZDC/CMakeLists.txt index 0ea5f8c7e6..9088773d96 100644 --- a/src/detectors/ZDC/CMakeLists.txt +++ b/src/detectors/ZDC/CMakeLists.txt @@ -6,8 +6,6 @@ project(ZDC) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/examples/log_example/CMakeLists.txt b/src/examples/log_example/CMakeLists.txt index 3a9c4f0784..da7138fa19 100644 --- a/src/examples/log_example/CMakeLists.txt +++ b/src/examples/log_example/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/examples/track_matching/CMakeLists.txt b/src/examples/track_matching/CMakeLists.txt index c7531ca06e..9eb68cacd9 100644 --- a/src/examples/track_matching/CMakeLists.txt +++ b/src/examples/track_matching/CMakeLists.txt @@ -18,19 +18,6 @@ endif() # Add CMake additional functionality: list (APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) # Find Find.cmake - -# ------------------------------------------------------------------ -print_grand_header(" B U I L D E I C R E C O N P A R T S ") -# ------------------------------------------------------------------ - - -# Print what we had built -print_header("CMake processed subdirectories:") -print_subdirectory_tree() -message(STATUS "\n-------------------------------") - - - # include logging by default find_package(spdlog REQUIRED) find_package(fmt REQUIRED) diff --git a/src/global/CMakeLists.txt b/src/global/CMakeLists.txt index 6de2a02301..bedb07a24c 100644 --- a/src/global/CMakeLists.txt +++ b/src/global/CMakeLists.txt @@ -1,7 +1,5 @@ cmake_minimum_required(VERSION 3.16) -print_header(">>>> D I R E C T O R Y : global <<<<") # Fancy printing - #add_subdirectory( calorimetry ) add_subdirectory( tracking ) add_subdirectory( digi ) diff --git a/src/global/calorimetry/CMakeLists.txt b/src/global/calorimetry/CMakeLists.txt index bf2daf9e47..94b707e9e5 100644 --- a/src/global/calorimetry/CMakeLists.txt +++ b/src/global/calorimetry/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/global/digi/CMakeLists.txt b/src/global/digi/CMakeLists.txt index 4a5a078528..1a1a7fd558 100644 --- a/src/global/digi/CMakeLists.txt +++ b/src/global/digi/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/global/pid/CMakeLists.txt b/src/global/pid/CMakeLists.txt index cf28d3ea28..5cdf49457c 100644 --- a/src/global/pid/CMakeLists.txt +++ b/src/global/pid/CMakeLists.txt @@ -3,7 +3,6 @@ cmake_minimum_required(VERSION 3.16) # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/global/reco/CMakeLists.txt b/src/global/reco/CMakeLists.txt index fd314f9112..9ec925d2b1 100644 --- a/src/global/reco/CMakeLists.txt +++ b/src/global/reco/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/global/tracking/CMakeLists.txt b/src/global/tracking/CMakeLists.txt index 5bd7f9044e..5d86b03db1 100644 --- a/src/global/tracking/CMakeLists.txt +++ b/src/global/tracking/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/services/geometry/acts/CMakeLists.txt b/src/services/geometry/acts/CMakeLists.txt index 57c74d9f4d..f2a93cbcc4 100644 --- a/src/services/geometry/acts/CMakeLists.txt +++ b/src/services/geometry/acts/CMakeLists.txt @@ -3,7 +3,6 @@ cmake_minimum_required(VERSION 3.16) # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/services/geometry/dd4hep/CMakeLists.txt b/src/services/geometry/dd4hep/CMakeLists.txt index 9788dbfcf6..970843481a 100644 --- a/src/services/geometry/dd4hep/CMakeLists.txt +++ b/src/services/geometry/dd4hep/CMakeLists.txt @@ -4,8 +4,6 @@ cmake_minimum_required(VERSION 3.16) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/services/geometry/richgeo/CMakeLists.txt b/src/services/geometry/richgeo/CMakeLists.txt index d0cfdec910..724d2e9c08 100644 --- a/src/services/geometry/richgeo/CMakeLists.txt +++ b/src/services/geometry/richgeo/CMakeLists.txt @@ -4,8 +4,6 @@ cmake_minimum_required(VERSION 3.16) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME}) diff --git a/src/services/io/podio/CMakeLists.txt b/src/services/io/podio/CMakeLists.txt index b85276097d..037a1b5a8e 100644 --- a/src/services/io/podio/CMakeLists.txt +++ b/src/services/io/podio/CMakeLists.txt @@ -3,7 +3,6 @@ cmake_minimum_required(VERSION 3.16) # Automatically set plugin name the same as the directory name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing project(podio_project) diff --git a/src/services/log/CMakeLists.txt b/src/services/log/CMakeLists.txt index c34a11f8b1..79c4e2174d 100644 --- a/src/services/log/CMakeLists.txt +++ b/src/services/log/CMakeLists.txt @@ -3,7 +3,6 @@ cmake_minimum_required(VERSION 3.16) # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/services/randomgenerator/CMakeLists.txt b/src/services/randomgenerator/CMakeLists.txt index f480e101d0..2ce8012e95 100644 --- a/src/services/randomgenerator/CMakeLists.txt +++ b/src/services/randomgenerator/CMakeLists.txt @@ -1,7 +1,6 @@ cmake_minimum_required(VERSION 3.16) get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing #compile RandGen_driver project("RandGen_driver") diff --git a/src/services/rootfile/CMakeLists.txt b/src/services/rootfile/CMakeLists.txt index 60d2a6582b..a9b36c8a14 100644 --- a/src/services/rootfile/CMakeLists.txt +++ b/src/services/rootfile/CMakeLists.txt @@ -3,7 +3,6 @@ cmake_minimum_required(VERSION 3.16) # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/tests/BEMC_test/CMakeLists.txt b/src/tests/BEMC_test/CMakeLists.txt index d9dd1f40c4..dbb193b501 100644 --- a/src/tests/BEMC_test/CMakeLists.txt +++ b/src/tests/BEMC_test/CMakeLists.txt @@ -6,8 +6,6 @@ project(BEMC_test) # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing - # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths plugin_add(${PLUGIN_NAME} ) diff --git a/src/tests/algorithms_test/CMakeLists.txt b/src/tests/algorithms_test/CMakeLists.txt index bef62b1972..132fe9327b 100644 --- a/src/tests/algorithms_test/CMakeLists.txt +++ b/src/tests/algorithms_test/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(DIRECOTRY_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) - print_header(">>>> U N I T T E S T S : ${DIRECOTRY_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/tests/geometry_navigation_test/CMakeLists.txt b/src/tests/geometry_navigation_test/CMakeLists.txt index a67e2ff62b..bf4f178223 100644 --- a/src/tests/geometry_navigation_test/CMakeLists.txt +++ b/src/tests/geometry_navigation_test/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/tests/podio_test/CMakeLists.txt b/src/tests/podio_test/CMakeLists.txt index db3bb1bf3b..74bea36b7d 100644 --- a/src/tests/podio_test/CMakeLists.txt +++ b/src/tests/podio_test/CMakeLists.txt @@ -4,7 +4,6 @@ cmake_minimum_required(VERSION 3.16) # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing project(podio_test_project) diff --git a/src/tests/pyjano/CMakeLists.txt b/src/tests/pyjano/CMakeLists.txt index 8b5484b1db..15bcc49ac5 100644 --- a/src/tests/pyjano/CMakeLists.txt +++ b/src/tests/pyjano/CMakeLists.txt @@ -1,5 +1,4 @@ -print_header(">>>> P L U G I N : pyjano (tests) <<<<") # Fancy printing project(pyjano_playroom) diff --git a/src/tests/reco_test/CMakeLists.txt b/src/tests/reco_test/CMakeLists.txt index a67e2ff62b..bf4f178223 100644 --- a/src/tests/reco_test/CMakeLists.txt +++ b/src/tests/reco_test/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/tests/track_propagation_test/CMakeLists.txt b/src/tests/track_propagation_test/CMakeLists.txt index a67e2ff62b..bf4f178223 100644 --- a/src/tests/track_propagation_test/CMakeLists.txt +++ b/src/tests/track_propagation_test/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/tests/track_seeding_test/CMakeLists.txt b/src/tests/track_seeding_test/CMakeLists.txt index a67e2ff62b..bf4f178223 100644 --- a/src/tests/track_seeding_test/CMakeLists.txt +++ b/src/tests/track_seeding_test/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/tests/tracking_test/CMakeLists.txt b/src/tests/tracking_test/CMakeLists.txt index a67e2ff62b..bf4f178223 100644 --- a/src/tests/tracking_test/CMakeLists.txt +++ b/src/tests/tracking_test/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/utilities/dump_flags/CMakeLists.txt b/src/utilities/dump_flags/CMakeLists.txt index 65f96abe97..c6cff033bb 100644 --- a/src/utilities/dump_flags/CMakeLists.txt +++ b/src/utilities/dump_flags/CMakeLists.txt @@ -1,7 +1,6 @@ # Automatically set plugin name the same as the directory name # Don't forget string(REPLACE " " "_" PLUGIN_NAME ${PLUGIN_NAME}) if this dir has spaces in its name get_filename_component(PLUGIN_NAME ${CMAKE_CURRENT_LIST_DIR} NAME) -print_header(">>>> P L U G I N : ${PLUGIN_NAME} <<<<") # Fancy printing # Function creates ${PLUGIN_NAME}_plugin and ${PLUGIN_NAME}_library targets # Setting default includes, libraries and installation paths diff --git a/src/utilities/eicrecon/CMakeLists.txt b/src/utilities/eicrecon/CMakeLists.txt index 7c78156496..f8328ef85f 100644 --- a/src/utilities/eicrecon/CMakeLists.txt +++ b/src/utilities/eicrecon/CMakeLists.txt @@ -1,6 +1,5 @@ cmake_minimum_required(VERSION 3.16) -print_header(">>>> E X E C U T A B L E : eicrecon <<<<") # Fancy printing project(eicrecon_project)