source: PSPA/madxPSPA/cmake/FindCYTHON.cmake @ 465

Last change on this file since 465 was 430, checked in by touze, 11 years ago

import madx-5.01.00

File size: 1.2 KB
Line 
1# Find the Cython compiler.
2#
3# This code sets the following variables:
4#
5# CYTHON_EXECUTABLE
6
7#=============================================================================
8# Copyright 2011 Kitware, Inc.
9#
10# Licensed under the Apache License, Version 2.0 (the "License");
11# you may not use this file except in compliance with the License.
12# You may obtain a copy of the License at
13#
14# http://www.apache.org/licenses/LICENSE-2.0
15#
16# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
21#=============================================================================
22#
23# Modified by Yngve Inntjore Levinsen to handle required argument
24
25find_program( CYTHON_EXECUTABLE NAMES cython cython2 )
26
27include( FindPackageHandleStandardArgs )
28FIND_PACKAGE_HANDLE_STANDARD_ARGS( Cython REQUIRED_VARS CYTHON_EXECUTABLE )
29
30mark_as_advanced( CYTHON_EXECUTABLE )
31
32if(CYTHON_FIND_REQUIRED AND NOT CYTHON_FOUND)
33    message(FATAL_ERROR "Could not find Cython")
34endif()
Note: See TracBrowser for help on using the repository browser.