A Simple ROOT Project
This is a minimal example of a ROOT project using the target system and without a dictionary.
examples/root-simple/CMakeLists.txt
cmake_minimum_required(VERSION 3.1...3.28)
project(RootSimpleExample LANGUAGES CXX)
# Finding the ROOT package
find_package(ROOT 6.16 CONFIG REQUIRED)
# Adding an executable program and linking to needed ROOT libraries
add_executable(RootSimpleExample SimpleExample.cxx)
target_link_libraries(RootSimpleExample PUBLIC ROOT::Physics)
examples/root-simple/SimpleExample.cxx
#include <TLorentzVector.h>
int main() {
TLorentzVector v(1,2,3,4);
v.Print();
return 0;
}