cmake_modules/CMakeDeterminePascalCompiler.cmake
changeset 9234 2bf3796c5855
parent 8859 bead90828a94
child 9413 37fcb9a796e6
equal deleted inserted replaced
9195:e653e96b0ec3 9234:2bf3796c5855
       
     1 # Determine the compiler to use for Pascal programs
       
     2 # NOTE, a generator may set CMAKE_Pascal_COMPILER before
       
     3 # loading this file to force a compiler.
       
     4 # use environment variable Pascal first if defined by user, next use
       
     5 # the cmake variable CMAKE_GENERATOR_PASCAL which can be defined by a generator
       
     6 # as a default compiler
       
     7 
       
     8 if(NOT CMAKE_Pascal_COMPILER)
       
     9     # prefer the environment variable FPC
       
    10     if($ENV{FPC} MATCHES ".+")
       
    11         get_filename_component(CMAKE_Pascal_COMPILER_INIT $ENV{FPC} PROGRAM PROGRAM_ARGS CMAKE_Pascal_FLAGS_ENV_INIT)
       
    12         if(CMAKE_Pascal_FLAGS_ENV_INIT)
       
    13             set(CMAKE_Pascal_COMPILER_ARG1 "${CMAKE_Pascal_FLAGS_ENV_INIT}" CACHE STRING "First argument to Pascal compiler")
       
    14         endif(CMAKE_Pascal_FLAGS_ENV_INIT)
       
    15         if(EXISTS ${CMAKE_Pascal_COMPILER_INIT})
       
    16         else(EXISTS ${CMAKE_Pascal_COMPILER_INIT})
       
    17             message(FATAL_ERROR "Could not find compiler set in environment variable FPC:\n$ENV{FPC}.")
       
    18         endif(EXISTS ${CMAKE_Pascal_COMPILER_INIT})
       
    19     endif($ENV{FPC} MATCHES ".+")
       
    20 
       
    21     # next try prefer the compiler specified by the generator
       
    22     if(CMAKE_GENERATOR_PASCAL)
       
    23         if(NOT CMAKE_Pascal_COMPILER_INIT)
       
    24             set(CMAKE_Pascal_COMPILER_INIT ${CMAKE_GENERATOR_PASCAL})
       
    25         endif(NOT CMAKE_Pascal_COMPILER_INIT)
       
    26     endif(CMAKE_GENERATOR_PASCAL)
       
    27 
       
    28     # finally list compilers to try
       
    29     if(CMAKE_Pascal_COMPILER_INIT)
       
    30         set(CMAKE_Pascal_COMPILER_LIST ${CMAKE_Pascal_COMPILER_INIT})
       
    31     else(CMAKE_Pascal_COMPILER_INIT)
       
    32         set(CMAKE_Pascal_COMPILER_LIST fpc)
       
    33     endif(CMAKE_Pascal_COMPILER_INIT)
       
    34 
       
    35     # Find the compiler.
       
    36     find_program(CMAKE_Pascal_COMPILER NAMES ${CMAKE_Pascal_COMPILER_LIST} DOC "Pascal compiler")
       
    37     if(CMAKE_Pascal_COMPILER_INIT AND NOT CMAKE_Pascal_COMPILER)
       
    38         set(CMAKE_Pascal_COMPILER "${CMAKE_Pascal_COMPILER_INIT}" CACHE FILEPATH "Pascal compiler" FORCE)
       
    39     endif(CMAKE_Pascal_COMPILER_INIT AND NOT CMAKE_Pascal_COMPILER)
       
    40 endif(NOT CMAKE_Pascal_COMPILER)
       
    41 mark_as_advanced(CMAKE_Pascal_COMPILER)
       
    42 
       
    43 if(NOT CMAKE_Pascal_COMPILER_VERSION)
       
    44     execute_process(COMMAND ${CMAKE_Pascal_COMPILER} -iV
       
    45                     OUTPUT_VARIABLE CMAKE_Pascal_COMPILER_VERSION
       
    46                     OUTPUT_STRIP_TRAILING_WHITESPACE
       
    47                     ) # we assume no error for something so simple
       
    48 endif(NOT CMAKE_Pascal_COMPILER_VERSION)
       
    49 mark_as_advanced(CMAKE_Pascal_COMPILER_VERSION)
       
    50 
       
    51 get_filename_component(COMPILER_LOCATION "${CMAKE_Pascal_COMPILER}" PATH)
       
    52 
       
    53 # configure variables set in this file for fast reload later on
       
    54 if(${CMAKE_VERSION} VERSION_LESS 2.8.10)
       
    55     configure_file(${CMAKE_MODULE_PATH}/CMakePascalCompiler.cmake.in
       
    56                    "${CMAKE_BINARY_DIR}/${CMAKE_FILES_DIRECTORY}/CMakePascalCompiler.cmake"
       
    57                    IMMEDIATE )
       
    58 else(${CMAKE_VERSION} VERSION_LESS 2.8.10)
       
    59     configure_file(${CMAKE_MODULE_PATH}/CMakePascalCompiler.cmake.in
       
    60                   "${CMAKE_BINARY_DIR}/${CMAKE_FILES_DIRECTORY}/${CMAKE_VERSION}/CMakePascalCompiler.cmake"
       
    61                    IMMEDIATE )
       
    62 endif(${CMAKE_VERSION} VERSION_LESS 2.8.10)
       
    63 
       
    64 set(CMAKE_Pascal_COMPILER_ENV_VAR "FPC")
       
    65