mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-09 03:39:47 +00:00
16 lines
386 B
CMake
16 lines
386 B
CMake
# common macros
|
|
# this file will also load platform specific macros
|
|
|
|
# platform specific macros
|
|
if(WIN32)
|
|
include(${CMAKE_MODULE_PATH}/macros/windows.cmake)
|
|
elseif(UNIX)
|
|
include(${CMAKE_MODULE_PATH}/macros/unix.cmake)
|
|
|
|
if(APPLE)
|
|
include(${CMAKE_MODULE_PATH}/macros/macos.cmake)
|
|
else()
|
|
include(${CMAKE_MODULE_PATH}/macros/linux.cmake)
|
|
endif()
|
|
endif()
|