mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
511743d4b3
New function uses std::filesystem::path and generates result faster than ddio_GetTempFileName() (benchmarked on Linux).
11 lines
175 B
CMake
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)
|