From 1465f95d5bfa70a5f94a5fcaec0695f6ec50f056 Mon Sep 17 00:00:00 2001 From: michael Date: Wed, 20 Jan 2021 12:57:18 +0100 Subject: [PATCH] Deleted unused cmake file --- cmake_files/FindXDR.cmake | 49 --------------------------------------- 1 file changed, 49 deletions(-) delete mode 100755 cmake_files/FindXDR.cmake diff --git a/cmake_files/FindXDR.cmake b/cmake_files/FindXDR.cmake deleted file mode 100755 index be0d6ac..0000000 --- a/cmake_files/FindXDR.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright (C) 2007-2019 CEA/DEN, EDF R&D, OPEN CASCADE -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com -# - -MESSAGE(STATUS "Check for XDR ...") - -INCLUDE(FindPackageHandleStandardArgs) - -FIND_PATH(XDR_INCLUDE_DIRS rpc/xdr.h PATH_SUFFIXES tirpc) -IF(XDR_INCLUDE_DIRS) - SET(XDR_DEFINITIONS "-DHAS_XDR") -ENDIF(XDR_INCLUDE_DIRS) - -IF(WIN32) - FIND_LIBRARY(XDR_LIBRARIES xdr) # To get the .lib file from XDR - FIND_PATH(XDR_INCLUDE_DIRS2 stdint.h PATH_SUFFIXES src/msvc) # To get the stdint.h from XDR (needed by types.h) - IF(XDR_INCLUDE_DIRS) - IF(XDR_INCLUDE_DIRS2) - LIST(APPEND XDR_INCLUDE_DIRS "${XDR_INCLUDE_DIRS2}") - ELSE() - SET(XDR_INCLUDE_DIRS "${XDR_INCLUDE_DIRS2}") # Make the detection fail - ENDIF() - ENDIF() - FIND_PACKAGE_HANDLE_STANDARD_ARGS(XDR REQUIRED_VARS XDR_INCLUDE_DIRS XDR_LIBRARIES) -ELSE(WIN32) - FIND_LIBRARY(XDR_LIBRARY NAMES tirpc xdr) - IF(NOT XDR_LIBRARY) - MESSAGE(STATUS "Could not find XDR libraries ...") - ELSE() - MESSAGE(STATUS "Found XDR libraries ${XDR_LIBRARY} ...") - SET(XDR_LIBRARIES ${XDR_LIBRARY}) - ENDIF() - FIND_PACKAGE_HANDLE_STANDARD_ARGS(XDR REQUIRED_VARS XDR_INCLUDE_DIRS) -ENDIF(WIN32) -- 2.39.2