aboutsummaryrefslogtreecommitdiff
path: root/src/platform/CMakeLists.txt
blob: 623ec08ffc095693812c4ed5aa4b4add096861af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set(CRU_PLATFORM_BASE_INCLUDE_DIR ${CRU_INCLUDE_DIR}/cru/platform)
add_library(cru_platform_base INTERFACE)
target_sources(cru_platform_base INTERFACE
	${CRU_PLATFORM_BASE_INCLUDE_DIR}/Check.hpp
	${CRU_PLATFORM_BASE_INCLUDE_DIR}/Exception.hpp
	${CRU_PLATFORM_BASE_INCLUDE_DIR}/GraphBase.hpp
	${CRU_PLATFORM_BASE_INCLUDE_DIR}/HeapDebug.hpp
	${CRU_PLATFORM_BASE_INCLUDE_DIR}/Matrix.hpp
	${CRU_PLATFORM_BASE_INCLUDE_DIR}/Resource.hpp
)
target_link_libraries(cru_platform_base INTERFACE cru_base)

add_subdirectory(graphics)
add_subdirectory(gui)