11 lines
217 B
CMake
11 lines
217 B
CMake
add_test(
|
|
NAME VersionCommand
|
|
COMMAND "${CMAKE_BINARY_DIR}/$<CONFIG>/fesa.exe" --version
|
|
)
|
|
|
|
set_tests_properties(
|
|
VersionCommand
|
|
PROPERTIES
|
|
PASS_REGULAR_EXPRESSION "[0-9]+\\.[0-9]+\\.[0-9]+"
|
|
)
|