cmake_minimum_required(VERSION 3.24 FATAL_ERROR) project(spherical_counter LANGUAGES C CXX) # Find packages if (NOT TARGET ROOT) find_package(ROOT REQUIRED) endif() if (NOT TARGET Garfield) find_package(Garfield REQUIRED) endif() add_executable(sphere sphere.cpp) target_link_libraries(sphere Garfield::Garfield)