mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-17 08:09:50 +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()
|