-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
17 lines (15 loc) · 848 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
17 lines (15 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# To generate the dictonaries cint_tmp has to run in $ROOTSYS with the include files in $ROOTSYS/include.
# This can't be done in a separate build directory, but what can be done is
# to simulate the setup by copying some cint directories. It looks like this is enough.
execute_process(COMMAND cmake -E make_directory ${CMAKE_BINARY_DIR}/cint/cint
COMMAND cmake -E copy_directory ${CMAKE_SOURCE_DIR}/cint/cint/include ${CMAKE_BINARY_DIR}/cint/cint/include
COMMAND cmake -E copy_directory ${CMAKE_SOURCE_DIR}/cint/cint/lib ${CMAKE_BINARY_DIR}/cint/cint/lib
COMMAND cmake -E copy_directory ${CMAKE_SOURCE_DIR}/cint/cint/stl ${CMAKE_BINARY_DIR}/cint/cint/stl )
add_subdirectory(cint)
add_subdirectory(ROOT)
if(reflex)
add_subdirectory(reflex)
endif()
if(cintex)
add_subdirectory(cintex)
endif()