You've already forked OpenRCT2-Unity
mirror of
https://github.com/izzy2lost/OpenRCT2-Unity.git
synced 2026-03-10 12:38:22 -07:00
12 lines
248 B
CMake
12 lines
248 B
CMake
# Helpers for linking platform specific libraries
|
|
|
|
function(target_link_platform_libraries target)
|
|
|
|
if (APPLE)
|
|
target_link_libraries(${target} "-framework Cocoa")
|
|
elseif(WIN32)
|
|
target_link_libraries(${target} gdi32)
|
|
endif ()
|
|
|
|
endfunction()
|