aboutsummaryrefslogtreecommitdiff
path: root/src/win/CMakeLists.txt
blob: 696ef20069d758bdf03d1c97053dd1673aba0f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
set(CRU_WIN_BASE_INCLUDE_DIR ${CRU_INCLUDE_DIR}/cru/win/)

add_library(cru_win_base STATIC
	debug_logger.hpp

	exception.cpp
	heap_debug.cpp
	string.cpp
)
target_sources(cru_win_base PUBLIC
	${CRU_WIN_BASE_INCLUDE_DIR}/exception.hpp
	${CRU_WIN_BASE_INCLUDE_DIR}/string.hpp
	${CRU_WIN_BASE_INCLUDE_DIR}/win_pre_config.hpp
)
target_compile_definitions(cru_win_base PUBLIC UNICODE _UNICODE) # use unicode
target_link_libraries(cru_win_base PUBLIC cru_base)

add_subdirectory(graph)
add_subdirectory(native)