mirror of https://github.com/jarro2783/cxxopts.git
chore(ci): Add test for options_no_regex
This commit is contained in:
parent
929bf2de37
commit
e9aff6b797
|
|
@ -22,6 +22,11 @@ add_executable(options_test main.cpp options.cpp)
|
|||
target_link_libraries(options_test cxxopts)
|
||||
add_test(options options_test)
|
||||
|
||||
add_executable(options_test_noregex main.cpp options.cpp)
|
||||
target_link_libraries(options_test_noregex cxxopts)
|
||||
target_compile_definitions(options_test_noregex PRIVATE CXXOPTS_NO_REGEX)
|
||||
add_test(options_no_regex options_test_noregex)
|
||||
|
||||
# test if the targets are findable from the build directory
|
||||
add_test(find-package-test ${CMAKE_CTEST_COMMAND}
|
||||
-C ${CMAKE_BUILD_TYPE}
|
||||
|
|
|
|||
Loading…
Reference in New Issue