We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53ea25f commit 81f02d5Copy full SHA for 81f02d5
source-code/convolution/cpp/CMakeLists.txt
@@ -7,4 +7,6 @@ set(CMAKE_CXX_EXTENSIONS NO)
7
8
add_compile_options(-Wall -Wextra -Wpedantic)
9
10
+enable_testing()
11
+
12
add_subdirectory(src)
source-code/convolution/cpp/src/CMakeLists.txt
@@ -11,6 +11,9 @@ if(Catch2_FOUND)
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/convolution)
target_link_libraries(test_convolution.exe
13
PRIVATE convolution)
14
15
+ add_test(NAME convolution
16
+ COMMAND test_convolution.exe)
17
else()
18
message(STATUS "Catch2 not found, tests will not be built")
19
endif()
0 commit comments