Skip to content
Snippets Groups Projects
Commit ef1e00ff authored by Martin Wölzer's avatar Martin Wölzer
Browse files

examples/test_*.sh: renamed to examples/test_*.bats

parent 495ce415
No related branches found
No related tags found
1 merge request!24Create release v.0.6.0
......@@ -4,8 +4,8 @@ if(libClaPP_CLANG_TIDY_ARGS_EXAMPLES)
set_target_properties(libclapp_example_large PROPERTIES CXX_CLANG_TIDY "${libClaPP_CLANG_TIDY_ARGS_EXAMPLES}")
endif()
install(TARGETS libclapp_example_large DESTINATION ${CMAKE_INSTALL_BINDIR})
configure_file(test_large_example.sh test_large_example.sh COPYONLY)
add_test(NAME large_example_tests COMMAND test_large_example.sh WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
configure_file(test_large_example.bats test_large_example.bats COPYONLY)
add_test(NAME large_example_tests COMMAND test_large_example.bats WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
add_executable(libclapp_example_short short_example.cpp)
target_link_libraries(libclapp_example_short libClaPP::clapp libClaPP_CXX_COMPILE_OPTIONS)
......@@ -13,8 +13,8 @@ if(libClaPP_CLANG_TIDY_ARGS_EXAMPLES)
set_target_properties(libclapp_example_short PROPERTIES CXX_CLANG_TIDY "${libClaPP_CLANG_TIDY_ARGS_EXAMPLES}")
endif()
install(TARGETS libclapp_example_short DESTINATION ${CMAKE_INSTALL_BINDIR})
configure_file(test_short_example.sh test_short_example.sh COPYONLY)
add_test(NAME short_example_tests COMMAND test_short_example.sh WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
configure_file(test_short_example.bats test_short_example.bats COPYONLY)
add_test(NAME short_example_tests COMMAND test_short_example.bats WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
add_executable(libclapp_example_sub_parser sub_parser_example.cpp)
target_link_libraries(libclapp_example_sub_parser libClaPP::clapp libClaPP_CXX_COMPILE_OPTIONS)
......@@ -22,8 +22,8 @@ if(libClaPP_CLANG_TIDY_ARGS_EXAMPLES)
set_target_properties(libclapp_example_sub_parser PROPERTIES CXX_CLANG_TIDY "${libClaPP_CLANG_TIDY_ARGS_EXAMPLES}")
endif()
install(TARGETS libclapp_example_sub_parser DESTINATION ${CMAKE_INSTALL_BINDIR})
configure_file(test_sub_parser_example.sh test_sub_parser_example.sh COPYONLY)
add_test(NAME sub_parser_example_tests COMMAND test_sub_parser_example.sh WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
configure_file(test_sub_parser_example.bats test_sub_parser_example.bats COPYONLY)
add_test(NAME sub_parser_example_tests COMMAND test_sub_parser_example.bats WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
add_executable(libclapp_example_container container_example.cpp)
target_link_libraries(libclapp_example_container libClaPP::clapp libClaPP_CXX_COMPILE_OPTIONS)
......@@ -31,5 +31,5 @@ if(libClaPP_CLANG_TIDY_ARGS_EXAMPLES)
set_target_properties(libclapp_example_container PROPERTIES CXX_CLANG_TIDY "${libClaPP_CLANG_TIDY_ARGS_EXAMPLES}")
endif()
install(TARGETS libclapp_example_container DESTINATION ${CMAKE_INSTALL_BINDIR})
configure_file(test_container_example.sh test_container_example.sh COPYONLY)
add_test(NAME container_example_tests COMMAND test_container_example.sh WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
configure_file(test_container_example.bats test_container_example.bats COPYONLY)
add_test(NAME container_example_tests COMMAND test_container_example.bats WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment