How to make nain4 available in a Geant4/cmake project
There are 3 options to include nain4 in your project:
- Adding it as an external project (recommended)
- Adding it as a subdirectory in your project
- Creating an independent installation
Adding Nain4 as a external project
Add this snippet to your CMakeLists.txt:
include(FetchContent)
set(FETCHCONTENT_UPDATES_DISCONNECTED ON CACHE BOOL "Cache package contents to avoid unnecessary downloads")
FetchContent_Declare(
nain4
GIT_REPOSITORY https://github.com/${USERNAME}/nain4.git
GIT_TAG ${COMMIT_HASH}
# make sure that no other nain4 installation is used
OVERRIDE_FIND_PACKAGE
SOURCE_SUBDIR nain4/src
)
FetchContent_MakeAvailable(nain4)
The value given to GIT_TAG
may be a replaced with a branch name (origin/<branch-name>
) or a commit hash. When opting for the 'branch name' option, it's important to be aware of the potential risk of losing reproducibility. With each execution of CMake, the library may be updated to a different state, introducing changes that can impact the reproducibility of your project. This can lead to compilation or runtime errors, making it challenging to recreate specific build or runtime environments. Thus, we advise to use a commit hash or a tag instead.
Adding Nain4 as a subdirectory to your project
Clone the Nain4 repository into your own project or create a symbolic link to the clone. Then simply add
add_subdirectory(nain4/nain4/src)
to your CMakeLists.txt.
Install Nain4 independently
git clone https://github.com/jacg/nain4.git
cd nain4
cmake [-DCMAKE_INSTALL_PREFIX=/path/to/install/] -S nain4 -B build
cmake --build build --target install
Unless the option CMAKE_INSTALL_PREFIX
is speficied, the files will be installed in /path/to/nain4/install
.
Then add to your CMakeLists.txt:
set(nain4_DIR "$ENV{NAIN4_INSTALL}/lib/cmake/nain4/")
find_package(nain4 REQUIRED)
Make sure you have NAIN4_INSTALL
set in your shell environment before running cmake
or replace it by /path/to/install/
in the CMakeLists.txt file.
Linking to Nain4
Regardless of the chosen option, you will also need to link the library to each target like:
target_link_libraries(
client_exe
PRIVATE
nain4
${Geant4_LIBRARIES}
)