10 lines
306 B
CMake
10 lines
306 B
CMake
include(CTest)
|
|
|
|
# ------------------------------------------------------- #
|
|
# CTEST 1
|
|
# test if the program successfully reads the project config
|
|
|
|
add_test(NAME project_build
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/tests/project
|
|
COMMAND python ${GEMSTONE_TEST_DIR}/project/test_project.py)
|