aboutsummaryrefslogtreecommitdiff
path: root/demos/CMakeLists.txt
blob: cf27d408fddac4b34d0ea2199d692fe43dc96061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
add_library(cru_demo_base INTERFACE)

if(WIN32)
	target_link_libraries(cru_demo_base INTERFACE cru_win_gui)
endif()

if(WIN32) # Currently only enable tests on Windows.
	add_subdirectory(main)
	add_subdirectory(input_method)
endif()

if(UNIX)
	add_subdirectory(xcb)
endif()