diff --git a/DDRec/CMakeLists.txt b/DDRec/CMakeLists.txt index dafc257673ba6bbe061e6b6477d54bf243b39ad0..25bcf71d5d5aeb96c058bfff31c3316d34f08d2f 100644 --- a/DDRec/CMakeLists.txt +++ b/DDRec/CMakeLists.txt @@ -64,12 +64,12 @@ dd4hep_add_plugin(DDRecPlugins ) if(DD4HEP_USE_GEAR) - find_package(Gear REQUIRED COMPONENTS geartgeo) + find_package(GEAR REQUIRED COMPONENTS geartgeo) add_executable(convertToGear src/convertToGear.cc) target_link_libraries(convertToGear ${GEAR_LIBRARIES} ${GEAR_COMPONENT_LIBRARIES} DDRec) target_compile_definitions(convertToGear PUBLIC DD4HEP_USE_GEAR) else() - find_package(Gear COMPONENTS geartgeo QUIET) + find_package(GEAR COMPONENTS geartgeo QUIET) IF(GEAR_FOUND) add_executable(convertToGear src/convertToGear.cc) target_link_libraries(convertToGear ${GEAR_LIBRARIES} ${GEAR_COMPONENT_LIBRARIES} DDRec)