aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-10-15 01:10:15 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-10-15 01:10:15 +0300
commit933654fbae37b3726cfa449d187759fe06f8fcc7 (patch)
tree8d961c269665d77a814a8e2cbbd415997b3d2897
parentcmd_line.cpp: move implementation from cmd_line.hpp (diff)
downloadwinapi-common-933654fbae37b3726cfa449d187759fe06f8fcc7.tar.gz
winapi-common-933654fbae37b3726cfa449d187759fe06f8fcc7.zip
test/ -> test/unit_tests/
-rw-r--r--test/CMakeLists.txt13
-rw-r--r--test/unit_tests/CMakeLists.txt12
-rw-r--r--test/unit_tests/cmd_line.cpp (renamed from test/cmd_line.cpp)0
-rw-r--r--test/unit_tests/error.cpp (renamed from test/error.cpp)0
-rw-r--r--test/unit_tests/handle.cpp (renamed from test/handle.cpp)0
-rw-r--r--test/unit_tests/main.cpp (renamed from test/main.cpp)0
6 files changed, 13 insertions, 12 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 33a6101..bed23ce 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -1,12 +1 @@
-file(GLOB unit_tests_src "*.cpp")
-add_executable(unit_tests ${unit_tests_src})
-target_link_libraries(unit_tests PRIVATE winapi_common)
-set_target_properties(unit_tests PROPERTIES OUTPUT_NAME winapi-common-unit-tests)
-
-find_package(Boost REQUIRED COMPONENTS unit_test_framework)
-target_link_libraries(unit_tests PRIVATE Boost::disable_autolinking Boost::unit_test_framework)
-
-install(TARGETS unit_tests RUNTIME DESTINATION bin)
-if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
- install(FILES "$<TARGET_PDB_FILE:unit_tests>" DESTINATION bin OPTIONAL)
-endif()
+add_subdirectory(unit_tests)
diff --git a/test/unit_tests/CMakeLists.txt b/test/unit_tests/CMakeLists.txt
new file mode 100644
index 0000000..33a6101
--- /dev/null
+++ b/test/unit_tests/CMakeLists.txt
@@ -0,0 +1,12 @@
+file(GLOB unit_tests_src "*.cpp")
+add_executable(unit_tests ${unit_tests_src})
+target_link_libraries(unit_tests PRIVATE winapi_common)
+set_target_properties(unit_tests PROPERTIES OUTPUT_NAME winapi-common-unit-tests)
+
+find_package(Boost REQUIRED COMPONENTS unit_test_framework)
+target_link_libraries(unit_tests PRIVATE Boost::disable_autolinking Boost::unit_test_framework)
+
+install(TARGETS unit_tests RUNTIME DESTINATION bin)
+if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
+ install(FILES "$<TARGET_PDB_FILE:unit_tests>" DESTINATION bin OPTIONAL)
+endif()
diff --git a/test/cmd_line.cpp b/test/unit_tests/cmd_line.cpp
index 4506304..4506304 100644
--- a/test/cmd_line.cpp
+++ b/test/unit_tests/cmd_line.cpp
diff --git a/test/error.cpp b/test/unit_tests/error.cpp
index f70d95d..f70d95d 100644
--- a/test/error.cpp
+++ b/test/unit_tests/error.cpp
diff --git a/test/handle.cpp b/test/unit_tests/handle.cpp
index 13551f4..13551f4 100644
--- a/test/handle.cpp
+++ b/test/unit_tests/handle.cpp
diff --git a/test/main.cpp b/test/unit_tests/main.cpp
index d7e8d4f..d7e8d4f 100644
--- a/test/main.cpp
+++ b/test/unit_tests/main.cpp