Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorHannah von Reth <vonreth@kde.org>2020-01-22 14:52:58 +0300
committerHannah von Reth <vonreth@kde.org>2020-01-22 15:29:33 +0300
commit0359a6a1f029bc8b7f479cc83374b77b39ce7950 (patch)
treec01eae7549c3528739c592c07dbdb7fa2c81e1fe /cmake
parent6ed418abd0c7259e181fcad4d59a6ee312cdec58 (diff)
Remove unneeded code
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/DefinePlatformDefaults.cmake32
1 files changed, 0 insertions, 32 deletions
diff --git a/cmake/modules/DefinePlatformDefaults.cmake b/cmake/modules/DefinePlatformDefaults.cmake
deleted file mode 100644
index 91f659215..000000000
--- a/cmake/modules/DefinePlatformDefaults.cmake
+++ /dev/null
@@ -1,32 +0,0 @@
-# (c) 2014 Copyright ownCloud GmbH
-# 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")