Descent3/ddio/tests/CMakeLists.txt
Azamat H. Hackimov 511743d4b3 Implementing new ddio_GetTmpFileName()
New function uses std::filesystem::path and generates result faster than ddio_GetTempFileName() (benchmarked on Linux).
2024-09-18 21:23:18 +03:00

11 lines
175 B
CMake

set(CMAKE_FOLDER "tests")
add_executable(ddio_tests
ddio_tests.cpp
)
target_link_libraries(ddio_tests PRIVATE
GTest::gtest_main
ddio
)
gtest_discover_tests(ddio_tests)