CMakeLists.txt 273 字节
Newer Older
1 2 3 4 5 6 7 8
file(GLOB TEST_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "test_*.py")
string(REPLACE ".py" "" TEST_OPS "${TEST_OPS}")

# default test
foreach(src ${TEST_OPS})
    py_test(${src} SRCS ${src}.py)
endforeach()

9
add_subdirectory(fit_a_line)
10
add_subdirectory(recognize_digits)