-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
22 lines (19 loc) · 907 Bytes
/
CMakeLists.txt
File metadata and controls
22 lines (19 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
if(pyroot)
if(NOT MSVC OR win_broken_tests)
ROOTTEST_ADD_TEST(cpp
MACRO PyROOT_cpptests.py
COPY_TO_BUILDDIR Namespace.C PointerPassing.C Namespace2.C
PRECMD ${ROOT_root_CMD} -b -q -l -e .L\ Namespace.C+
-e .L\ PointerPassing.C+
-e .L\ Namespace2.C+)
ROOTTEST_ADD_TEST(advanced
MACRO PyROOT_advancedtests.py
COPY_TO_BUILDDIR AdvancedCpp.C Template.C
PRECMD ${ROOT_root_CMD} -b -q -l -e .L\ AdvancedCpp.C+
-e .L\ Template.C+)
endif()
ROOTTEST_ADD_TEST(cpp11
MACRO PyROOT_cpp11tests.py
COPY_TO_BUILDDIR Cpp11Features.C
PRECMD ${ROOT_root_CMD} -b -q -l -e .L\ Cpp11Features.C+)
endif()