Files
XCEngine/tests/Core/IO/CMakeLists.txt

35 lines
773 B
CMake
Raw Normal View History

# ============================================================
# Core/IO Tests
# ============================================================
set(IO_TEST_SOURCES
test_iresource_loader.cpp
test_resource_path.cpp
test_resource_filesystem.cpp
test_file_archive.cpp
test_resource_package.cpp
)
add_executable(io_tests ${IO_TEST_SOURCES})
if(MSVC)
set_target_properties(io_tests PROPERTIES
LINK_FLAGS "/NODEFAULTLIB:libcpmt.lib /NODEFAULTLIB:libcmt.lib"
)
endif()
target_link_libraries(io_tests
PRIVATE
XCEngine
GTest::gtest
GTest::gtest_main
)
target_include_directories(io_tests PRIVATE
${CMAKE_SOURCE_DIR}/engine/include
2026-03-29 01:36:53 +08:00
${CMAKE_SOURCE_DIR}/tests/Fixtures
)
include(GoogleTest)
gtest_discover_tests(io_tests)