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 23db711 commit 8b2fb73Copy full SHA for 8b2fb73
tests/CMakeLists.txt
@@ -72,6 +72,6 @@ FetchContent_Declare(Catch2
72
GIT_TAG v3.0.1)
73
FetchContent_MakeAvailable(Catch2)
74
75
-add_subdirectory(main)
76
add_subdirectory(regex)
+add_subdirectory(string_template)
77
add_subdirectory(trailing_view)
tests/main/CMakeLists.txt tests/string_template/CMakeLists.txttests/main/CMakeLists.txt renamed to tests/string_template/CMakeLists.txt
@@ -1,10 +1,10 @@
1
cmake_minimum_required(VERSION 3.12)
2
-project(main_tests CXX)
+project(string_template_tests CXX)
3
4
# ${CMAKE_PROJECT_NAME}: project name of the root CMakeLists.txt
5
# ${PROJECT_NAME}: project name of the current CMakeLists.txt
6
add_executable(${PROJECT_NAME}
7
- main.cpp
+ string_template.cpp
8
)
9
10
target_link_libraries(${PROJECT_NAME} PRIVATE
tests/main/main.cpp tests/string_template/string_template.cpptests/main/main.cpp renamed to tests/string_template/string_template.cpp
0 commit comments