aboutsummaryrefslogtreecommitdiff
path: root/test/CMakeLists.txt
blob: 1cd54b478ff2dff15636a0a21092794f6aaf8414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
find_package(GTest CONFIG REQUIRED)

include(GoogleTest)

add_library(cru_test_base INTERFACE)
target_link_libraries(cru_test_base INTERFACE GTest::gtest GTest::gtest_main)

add_subdirectory(common)
add_subdirectory(platform)
add_subdirectory(xml)
add_subdirectory(toml)
add_subdirectory(ui)

if(WIN32)
	add_subdirectory(win)
endif()