9 lines
233 B
CMake
9 lines
233 B
CMake
# add teting
|
|
|
|
add_test(gtest02 python test.py)
|
|
configure_file(test.py test.py)
|
|
set_property(TEST gtest02
|
|
PROPERTY ENVIRONMENT
|
|
PYTHONPATH=./module:${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}
|
|
)
|