Files
geant4/environments/g4py/tests/test01/CMakeLists.txt
T

12 lines
285 B
CMake

# add teting
add_test(test01 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 test01 PROPERTY ENVIRONMENT PYTHONPATH=./module)