diff options
author | crupest <crupest@outlook.com> | 2022-01-15 22:41:11 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-01-15 22:41:11 +0800 |
commit | 570e95f4551385a81eb2cf6f2e386e3b0cb291a8 (patch) | |
tree | 8ed08ab29f49b260ac66e88a75aa436c4daefb57 /test/common/CMakeLists.txt | |
parent | abb9d48a72e2d580d6bfbfcb600795c5ec66e204 (diff) | |
download | cru-570e95f4551385a81eb2cf6f2e386e3b0cb291a8.tar.gz cru-570e95f4551385a81eb2cf6f2e386e3b0cb291a8.tar.bz2 cru-570e95f4551385a81eb2cf6f2e386e3b0cb291a8.zip |
...
Diffstat (limited to 'test/common/CMakeLists.txt')
-rw-r--r-- | test/common/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/common/CMakeLists.txt b/test/common/CMakeLists.txt index 810c68d5..1c669dcc 100644 --- a/test/common/CMakeLists.txt +++ b/test/common/CMakeLists.txt @@ -6,4 +6,10 @@ add_executable(cru_base_test ) target_link_libraries(cru_base_test PRIVATE cru_base cru_test_base) +if (UNIX) + target_sources(cru_base_test PRIVATE + io/UnixFileStreamTest.cpp + ) +endif() + gtest_discover_tests(cru_base_test) |