1
0
mirror of synced 2024-05-30 17:28:12 +02:00
modern-cmake/examples/root-simple/CMakeLists.txt
2021-03-23 19:19:41 +00:00

535 B

CMake ROOT simple example

[main]

cmake_minimum_required(VERSION 3.1...3.20)

project(RootSimpleExample LANGUAGES CXX)

Finding the ROOT package

[find_package]

find_package(ROOT 6.16 CONFIG REQUIRED)

[find_package]

Adding an executable program and linking to needed ROOT libraries

add_executable(RootSimpleExample SimpleExample.cxx) target_link_libraries(RootSimpleExample PUBLIC ROOT::Physics)

[main]

enable_testing() add_test(NAME RootSimpleExample COMMAND RootSimpleExample)