2018-05-01 17:18:27 +02:00
|
|
|
|
|
|
|
## [main]
|
2019-11-26 19:52:10 +01:00
|
|
|
cmake_minimum_required(VERSION 3.1...3.16)
|
2018-05-01 17:18:27 +02:00
|
|
|
|
|
|
|
project(RootUseFileExample LANGUAGES CXX)
|
|
|
|
|
2019-08-08 22:18:42 +02:00
|
|
|
find_package(ROOT 6.16 CONFIG REQUIRED)
|
2018-05-01 17:18:27 +02:00
|
|
|
|
2019-08-08 23:10:25 +02:00
|
|
|
## [core]
|
2019-08-08 22:18:42 +02:00
|
|
|
# Sets up global settings
|
2018-05-01 17:18:27 +02:00
|
|
|
include("${ROOT_USE_FILE}")
|
|
|
|
|
2019-08-08 22:18:42 +02:00
|
|
|
# This is required for ROOT < 6.16
|
|
|
|
# string(REPLACE "-L " "-L" ROOT_EXE_LINKER_FLAGS "${ROOT_EXE_LINKER_FLAGS}")
|
|
|
|
|
2018-05-01 17:18:27 +02:00
|
|
|
# This is required on if there is more than one flag (like on macOS)
|
|
|
|
separate_arguments(ROOT_EXE_LINKER_FLAGS)
|
|
|
|
|
|
|
|
add_executable(RootUseFileExample SimpleExample.cxx)
|
|
|
|
target_link_libraries(RootUseFileExample PUBLIC ${ROOT_LIBRARIES} ${ROOT_EXE_LINKER_FLAGS})
|
2019-08-08 23:10:25 +02:00
|
|
|
## [core]
|
2018-05-01 17:18:27 +02:00
|
|
|
|
|
|
|
## [main]
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
add_test(NAME RootUseFileExample COMMAND RootUseFileExample)
|