aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmake/Copyright_cmake.txt56
-rw-r--r--cmake/FindPCIAccess.cmake28
-rw-r--r--cmake/FindPthreadStubs.cmake14
-rw-r--r--cmake/FindUDev.cmake28
-rw-r--r--cmake/FindValgrind.cmake22
-rw-r--r--cmake/README.txt7
6 files changed, 0 insertions, 155 deletions
diff --git a/cmake/Copyright_cmake.txt b/cmake/Copyright_cmake.txt
deleted file mode 100644
index 35f7e4b6..00000000
--- a/cmake/Copyright_cmake.txt
+++ /dev/null
@@ -1,56 +0,0 @@
-CMake - Cross Platform Makefile Generator
-Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-
-* Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
-* Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
-* Neither the names of Kitware, Inc., the Insight Software Consortium,
- nor the names of their contributors may be used to endorse or promote
- products derived from this software without specific prior written
- permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-------------------------------------------------------------------------------
-
-The above copyright and license notice applies to distributions of
-CMake in source and binary form. Some source files contain additional
-notices of original copyright by their contributors; see each source
-for details. Third-party software packages supplied with CMake under
-compatible licenses provide their own copyright notices documented in
-corresponding subdirectories.
-
-------------------------------------------------------------------------------
-
-CMake was initially developed by Kitware with the following sponsorship:
-
- * National Library of Medicine at the National Institutes of Health
- as part of the Insight Segmentation and Registration Toolkit (ITK).
-
- * US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel
- Visualization Initiative.
-
- * National Alliance for Medical Image Computing (NAMIC) is funded by the
- National Institutes of Health through the NIH Roadmap for Medical Research,
- Grant U54 EB005149.
-
- * Kitware, Inc.
diff --git a/cmake/FindPCIAccess.cmake b/cmake/FindPCIAccess.cmake
deleted file mode 100644
index 65f7d5c1..00000000
--- a/cmake/FindPCIAccess.cmake
+++ /dev/null
@@ -1,28 +0,0 @@
-# - FindPCIAccess
-#
-# Copyright 2015 Valve Corporation
-
-find_package(PkgConfig)
-
-pkg_check_modules(PC_PCIACCESS QUIET pciaccess)
-
-find_path(PCIACCESS_INCLUDE_DIR NAMES pciaccess.h
- HINTS
- ${PC_PCIACCESS_INCLUDEDIR}
- ${PC_PCIACCESS_INCLUDE_DIRS}
- )
-
-find_library(PCIACCESS_LIBRARY NAMES pciaccess
- HINTS
- ${PC_PCIACCESS_LIBDIR}
- ${PC_PCIACCESS_LIBRARY_DIRS}
- )
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(PCIAccess DEFAULT_MSG
- PCIACCESS_INCLUDE_DIR PCIACCESS_LIBRARY)
-
-mark_as_advanced(PCIACCESS_INCLUDE_DIR PCIACCESS_LIBRARY)
-
-set(PCIACCESS_INCLUDE_DIRS ${PCIACCESS_INCLUDE_DIR})
-set(PCIACCESS_LIBRARIES ${PCIACCESS_LIBRARY})
diff --git a/cmake/FindPthreadStubs.cmake b/cmake/FindPthreadStubs.cmake
deleted file mode 100644
index 063bbe51..00000000
--- a/cmake/FindPthreadStubs.cmake
+++ /dev/null
@@ -1,14 +0,0 @@
-# - FindPthreadStubs
-#
-# Copyright (C) 2015 Valve Corporation
-
-find_package(PkgConfig)
-
-pkg_check_modules(PC_PTHREADSTUBS QUIET pthread-stubs)
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(PthreadStubs DEFAULT_MSG
- PC_PTHREADSTUBS_FOUND)
-
-set(PTHREADSTUBS_INCLUDE_DIRS "")
-set(PTHREADSTUBS_LIBRARIES "")
diff --git a/cmake/FindUDev.cmake b/cmake/FindUDev.cmake
deleted file mode 100644
index e3d16995..00000000
--- a/cmake/FindUDev.cmake
+++ /dev/null
@@ -1,28 +0,0 @@
-# - FindUDev
-#
-# Copyright (C) 2015 Valve Corporation
-
-find_package(PkgConfig)
-
-pkg_check_modules(PC_LIBUDEV QUIET libudev)
-
-find_path(UDEV_INCLUDE_DIR NAMES libudev.h
- HINTS
- ${PC_LIBUDEV_INCLUDEDIR}
- ${PC_LIBUDEV_INCLUDE_DIRS}
- )
-
-find_library(UDEV_LIBRARY NAMES udev
- HINTS
- ${PC_LIBUDEV_LIBDIR}
- ${PC_LIBUDEV_LIBRARY_DIRS}
- )
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(UDev DEFAULT_MSG
- UDEV_INCLUDE_DIR UDEV_LIBRARY)
-
-mark_as_advanced(UDEV_INCLUDE_DIR UDEV_LIBRARY)
-
-set(UDEV_INCLUDE_DIRS ${UDEV_INCLUDE_DIR})
-set(UDEV_LIBRARIES ${UDEV_LIBRARY})
diff --git a/cmake/FindValgrind.cmake b/cmake/FindValgrind.cmake
deleted file mode 100644
index 5c1fb561..00000000
--- a/cmake/FindValgrind.cmake
+++ /dev/null
@@ -1,22 +0,0 @@
-# - FindValgrind
-#
-# Copyright (C) 2015 Valve Corporation
-
-find_package(PkgConfig)
-
-pkg_check_modules(PC_VALGRIND QUIET valgrind)
-
-find_path(VALGRIND_INCLUDE_DIR NAMES valgrind.h memcheck.h
- HINTS
- ${PC_VALGRIND_INCLUDEDIR}
- ${PC_VALGRIND_INCLUDE_DIRS}
- )
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Valgrind DEFAULT_MSG
- VALGRIND_INCLUDE_DIR)
-
-mark_as_advanced(VALGRIND_INCLUDE_DIR)
-
-set(VALGRIND_INCLUDE_DIRS ${VALGRIND_INCLUDE_DIR})
-set(VALGRIND_LIBRARIES "")
diff --git a/cmake/README.txt b/cmake/README.txt
deleted file mode 100644
index 59e6285d..00000000
--- a/cmake/README.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-The following files are copied out of CMake 2.8.
-- FindImageMagick.cmake
-
-I have also copied the Copyright.txt file out of cmake and renamed it:
-- Copyright_cmake.txt
-
-All other files are created and/or maintained by either LunarG Inc or Valve Corporation. \ No newline at end of file