mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
c3d41f0d48
Missing copyright headers added.
32 lines
880 B
CMake
32 lines
880 B
CMake
# (c) 2014 Copyright ownCloud, Inc.
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING* file.
|
|
|
|
# Set system vars
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
set(LINUX TRUE)
|
|
endif(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
set(FREEBSD TRUE)
|
|
set(BSD TRUE)
|
|
endif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
|
|
set(OPENBSD TRUE)
|
|
set(BSD TRUE)
|
|
endif (CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
|
set(NETBSD TRUE)
|
|
set(BSD TRUE)
|
|
endif (CMAKE_SYSTEM_NAME MATCHES "NetBSD")
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "(Solaris|SunOS)")
|
|
set(SOLARIS TRUE)
|
|
endif (CMAKE_SYSTEM_NAME MATCHES "(Solaris|SunOS)")
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "OS2")
|
|
set(OS2 TRUE)
|
|
endif (CMAKE_SYSTEM_NAME MATCHES "OS2")
|