From 77125df1999bc8e143403da3ebb387f12a2826d8 Mon Sep 17 00:00:00 2001 From: Greg Beard Date: Thu, 18 Oct 2018 17:09:19 +0100 Subject: [PATCH] Fixes missing test file For an earlier PR (#16), I introduced a new test file for testing unicode support on Windows. The project's `.gitignore` file excludes the entire test directory, so it was missed out. Turns out that this test file wasn't actually needed, but the CMake config still uses it. This commit just changes this back to the original `test.cpp` file. --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f174498..444d537 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -3,7 +3,7 @@ target_link_libraries(mio.test PRIVATE mio::mio) add_test(NAME mio.test COMMAND mio.test) if(WIN32) - add_executable(mio.unicode.test unicode_test.cpp) + add_executable(mio.unicode.test test.cpp) target_link_libraries(mio.unicode.test PRIVATE mio::mio) target_compile_definitions(mio.unicode.test PRIVATE UNICODE) add_test(NAME mio.unicode.test COMMAND mio.test)