From cca66b9ec4e494c1d919bff0f71a820d8afab1fa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:24:48 +0200 Subject: Adding upstream version 1.2.2. Signed-off-by: Daniel Baumann --- src/3rdparty/2geom/CMakeScripts/FindCython.cmake | 37 ++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/3rdparty/2geom/CMakeScripts/FindCython.cmake (limited to 'src/3rdparty/2geom/CMakeScripts/FindCython.cmake') diff --git a/src/3rdparty/2geom/CMakeScripts/FindCython.cmake b/src/3rdparty/2geom/CMakeScripts/FindCython.cmake new file mode 100644 index 0000000..6d06de9 --- /dev/null +++ b/src/3rdparty/2geom/CMakeScripts/FindCython.cmake @@ -0,0 +1,37 @@ +# Find the Cython compiler. +# +# This code sets the following variables: +# +# CYTHON_EXECUTABLE +# +# See also UseCython.cmake + +#============================================================================= +# Copyright 2011 Kitware, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#============================================================================= + +find_program( CYTHON_EXECUTABLE NAMES cython cython.py + PATHS $ENV{PYTHON_PATH}\\Lib\\site-packages ${PYTHON_PATH}\\Lib\\site-packages) + +include( FindPackageHandleStandardArgs ) +FIND_PACKAGE_HANDLE_STANDARD_ARGS( Cython REQUIRED_VARS CYTHON_EXECUTABLE ) + +mark_as_advanced( CYTHON_EXECUTABLE ) + +IF (CYTHON_FOUND) + MESSAGE(STATUS "cython: FOUND") +ELSE(CYTHON_FOUND) + MESSAGE(STATUS "cython: NOT FOUND") +ENDIF (CYTHON_FOUND) -- cgit v1.2.3