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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2018-09-18 12:16:49 +0300
committertamasmeszaros <meszaros.q@gmail.com>2018-09-18 12:16:49 +0300
commit5fa99fd903312aab34ce8db748af602237855517 (patch)
tree9e6776adc236cfe23aa7e8fb6c523aaeef9fa804 /cmake/modules
parent3ddaccb6410478ad02d8c0e02d6d8e6eb1785b9f (diff)
removing unnecessary artefacts FindFlann and duplicate c++11 standard definition in cmake.
Diffstat (limited to 'cmake/modules')
-rw-r--r--cmake/modules/FindFlann.cmake28
1 files changed, 0 insertions, 28 deletions
diff --git a/cmake/modules/FindFlann.cmake b/cmake/modules/FindFlann.cmake
deleted file mode 100644
index 98674d230..000000000
--- a/cmake/modules/FindFlann.cmake
+++ /dev/null
@@ -1,28 +0,0 @@
-###############################################################################
-# Find Flann
-#
-# This sets the following variables:
-# FLANN_FOUND - True if FLANN was found.
-# FLANN_INCLUDE_DIRS - Directories containing the FLANN include files.
-# FLANN_LIBRARIES - Libraries needed to use FLANN.
-# FLANN_DEFINITIONS - Compiler flags for FLANN.
-
-find_package(PkgConfig)
-pkg_check_modules(PC_FLANN flann)
-set(FLANN_DEFINITIONS ${PC_FLANN_CFLAGS_OTHER})
-
-find_path(FLANN_INCLUDE_DIR flann/flann.hpp
- HINTS ${PC_FLANN_INCLUDEDIR} ${PC_FLANN_INCLUDE_DIRS})
-
-find_library(FLANN_LIBRARY flann_cpp
- HINTS ${PC_FLANN_LIBDIR} ${PC_FLANN_LIBRARY_DIRS})
-
-set(FLANN_INCLUDE_DIRS ${FLANN_INCLUDE_DIR})
-set(FLANN_LIBRARIES ${FLANN_LIBRARY})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Flann DEFAULT_MSG
- FLANN_LIBRARY FLANN_INCLUDE_DIR)
-
-mark_as_advanced(FLANN_LIBRARY FLANN_INCLUDE_DIR)
-