Files
geant4/environments/g4py/tests/test00/CMakeLists.txt
T
2019-12-06 15:12:28 +01:00

12 lines
285 B
CMake

# add teting
add_test(test00 python test.py)
if (${PYTHON_VERSION_MAJOR} MATCHES "2")
configure_file(test.py test.py)
elseif (${PYTHON_VERSION_MAJOR} MATCHES "3")
configure_file(python3/test.py test.py)
endif()
set_property(TEST test00 PROPERTY ENVIRONMENT PYTHONPATH=./module)