aboutsummaryrefslogtreecommitdiff
path: root/src/platform/bootstrap/CMakeLists.txt
blob: 4c8e095959f72833fc9271e2cba57e46c47e64fc (plain)
1
2
3
4
5
6
7
8
9
10
11
add_library(cru_platform_bootstrap SHARED
	Bootstrap.cpp
)

if(WIN32)
	target_link_libraries(cru_platform_bootstrap PUBLIC cru_win_gui)
elseif(APPLE)
	target_link_libraries(cru_platform_bootstrap PUBLIC cru_osx_gui)
endif()

target_compile_definitions(cru_platform_bootstrap PRIVATE CRU_PLATFORM_BOOTSTRAP_EXPORT_API)