2016-02-05 18:48:20 +03:00
|
|
|
cmake_minimum_required (VERSION 3.1)
|
2009-09-10 00:39:53 +04:00
|
|
|
project(testf C CXX Fortran)
|
2014-03-03 21:46:41 +04:00
|
|
|
if(NOT DEFINED CMake_TEST_NESTED_MAKE_PROGRAM AND NOT CMAKE_GENERATOR MATCHES "Visual Studio")
|
|
|
|
set(CMake_TEST_NESTED_MAKE_PROGRAM "${CMAKE_MAKE_PROGRAM}")
|
2013-12-05 21:44:32 +04:00
|
|
|
endif()
|
|
|
|
|
2008-11-03 20:15:59 +03:00
|
|
|
message("CTEST_FULL_OUTPUT ")
|
2008-11-07 01:33:42 +03:00
|
|
|
set(CMAKE_VERBOSE_MAKEFILE 1)
|
|
|
|
message("ENV_FLAGS = $ENV{FFLAGS}")
|
|
|
|
message("CMAKE_Fortran_COMPILER_INIT = ${CMAKE_Fortran_COMPILER_INIT}")
|
|
|
|
message("CMAKE_Fortran_COMPILER_FULLPATH = ${CMAKE_Fortran_COMPILER_FULLPATH}")
|
|
|
|
message("CMAKE_Fortran_COMPILER = ${CMAKE_Fortran_COMPILER}")
|
|
|
|
message("CMAKE_Fortran_FLAGS = ${CMAKE_Fortran_FLAGS}")
|
2005-02-15 17:01:14 +03:00
|
|
|
|
2009-10-26 18:32:19 +03:00
|
|
|
set(_SHARED SHARED)
|
2014-10-14 18:25:32 +04:00
|
|
|
if(CMAKE_Fortran_COMPILER_ID MATCHES "^(XL|VisualAge)$")
|
2009-10-26 18:32:19 +03:00
|
|
|
# We do not implement SHARED Fortran libs on AIX yet!
|
|
|
|
# Workaround: Set LINKER_LANGUAGE to C, which uses 'xlc' and Fortran implicits.
|
|
|
|
set(_SHARED STATIC)
|
2014-10-14 18:25:32 +04:00
|
|
|
elseif(CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
|
2009-10-26 18:32:19 +03:00
|
|
|
# g77 2.96 does not support shared libs on Itanium because g2c is not -fPIC
|
|
|
|
execute_process(COMMAND ${CMAKE_Fortran_COMPILER} --version
|
|
|
|
OUTPUT_VARIABLE output ERROR_VARIABLE output)
|
|
|
|
if("${output}" MATCHES "Red Hat .* 2\\.96")
|
|
|
|
set(_SHARED STATIC)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2011-02-23 18:34:28 +03:00
|
|
|
# Pick a module .def file with the properly mangled symbol name.
|
|
|
|
set(world_def "")
|
|
|
|
if(WIN32 AND NOT CYGWIN)
|
2014-10-14 18:25:32 +04:00
|
|
|
if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU")
|
2011-02-23 18:34:28 +03:00
|
|
|
set(world_def world_gnu.def)
|
2014-10-14 18:25:32 +04:00
|
|
|
elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel" OR
|
|
|
|
CMAKE_GENERATOR MATCHES "Visual Studio") # Intel plugin
|
2011-02-23 18:34:28 +03:00
|
|
|
set(world_def world_icl.def)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2009-10-23 16:24:51 +04:00
|
|
|
add_library(hello STATIC hello.f)
|
2011-02-23 18:34:28 +03:00
|
|
|
add_library(world ${_SHARED} world.f ${world_def})
|
2009-10-23 16:24:51 +04:00
|
|
|
add_executable(testf testf.f)
|
|
|
|
target_link_libraries(testf hello world)
|
2008-11-05 18:20:51 +03:00
|
|
|
|
|
|
|
function(test_fortran_c_interface_module)
|
|
|
|
message(STATUS "Testing FortranCInterface module")
|
|
|
|
# test the C to Fortran interface module
|
|
|
|
include(FortranCInterface)
|
2009-08-24 21:07:43 +04:00
|
|
|
FortranCInterface_VERIFY()
|
|
|
|
FortranCInterface_VERIFY(CXX)
|
2008-11-05 18:20:51 +03:00
|
|
|
if(CMAKE_Fortran_COMPILER_SUPPORTS_F90)
|
2011-01-24 19:21:41 +03:00
|
|
|
if(NOT CMAKE_Fortran_COMPILER_ID MATCHES "SunPro|MIPSpro|PathScale|Absoft")
|
2009-08-05 21:40:29 +04:00
|
|
|
set(module_expected 1)
|
|
|
|
endif()
|
|
|
|
if(FortranCInterface_MODULE_FOUND OR module_expected)
|
2008-10-31 23:08:56 +03:00
|
|
|
set(srcs foo.f)
|
|
|
|
set(FORTRAN_FUNCTIONS test_mod:sub)
|
2009-08-05 21:40:29 +04:00
|
|
|
set(MYC_DEFS TEST_MOD)
|
|
|
|
else()
|
|
|
|
message("${CMAKE_Fortran_COMPILER_ID} compilers do not support"
|
|
|
|
" linking Fortran module procedures from C")
|
|
|
|
endif()
|
2008-11-05 18:20:51 +03:00
|
|
|
endif()
|
2009-08-05 21:40:29 +04:00
|
|
|
list(APPEND FORTRAN_FUNCTIONS my_sub mysub)
|
|
|
|
FortranCInterface_HEADER(foo.h
|
|
|
|
MACRO_NAMESPACE "FC_"
|
|
|
|
SYMBOL_NAMESPACE "F_"
|
|
|
|
SYMBOLS ${FORTRAN_FUNCTIONS}
|
|
|
|
)
|
2008-11-05 18:20:51 +03:00
|
|
|
include_directories("${testf_BINARY_DIR}")
|
2009-08-05 21:40:29 +04:00
|
|
|
|
2008-11-05 18:20:51 +03:00
|
|
|
# if the name mangling is not found for a F90 compiler
|
|
|
|
# print out some diagnostic stuff for the dashboard
|
2009-08-05 21:40:29 +04:00
|
|
|
if(NOT FortranCInterface_GLOBAL_FOUND OR
|
|
|
|
(NOT FortranCInterface_MODULE_FOUND AND module_expected) )
|
|
|
|
find_program(FortranCInterface_EXE
|
|
|
|
NAMES FortranCInterface
|
|
|
|
PATHS ${FortranCInterface_BINARY_DIR} ${FortranCInterface_BINARY_DIR}/Debug
|
|
|
|
NO_DEFAULT_PATH
|
|
|
|
)
|
|
|
|
find_program(DUMPBIN dumpbin)
|
|
|
|
find_program(NM nm)
|
|
|
|
if(FortranCInterface_EXE)
|
|
|
|
if(DEPENDS)
|
|
|
|
execute_process(COMMAND ${DUMPBIN} /symbols "${FortranCInterface_EXE}"
|
|
|
|
OUTPUT_VARIABLE out)
|
|
|
|
message("symbols in ${FortranCInterface_EXE}:\n${out}")
|
|
|
|
endif()
|
|
|
|
if(NM)
|
|
|
|
execute_process(COMMAND ${NM} "${FortranCInterface_EXE}"
|
|
|
|
OUTPUT_VARIABLE out)
|
|
|
|
message("symbols in ${FortranCInterface_EXE}:\n${out}")
|
|
|
|
endif()
|
2008-10-31 23:08:56 +03:00
|
|
|
endif()
|
2008-11-05 18:20:51 +03:00
|
|
|
endif()
|
2008-11-03 20:15:59 +03:00
|
|
|
message("Fortran = ${CMAKE_Fortran_COMPILER_ID}")
|
|
|
|
message("C = ${CMAKE_C_COMPILER_ID}")
|
2009-08-04 22:06:45 +04:00
|
|
|
|
|
|
|
add_library(myfort mysub.f ${srcs})
|
|
|
|
|
|
|
|
add_library(myc myc.c)
|
|
|
|
target_link_libraries(myc myfort)
|
2009-08-05 21:40:29 +04:00
|
|
|
set_property(TARGET myc PROPERTY COMPILE_DEFINITIONS ${MYC_DEFS})
|
2009-08-04 22:06:45 +04:00
|
|
|
|
|
|
|
add_library(mycxx mycxx.cxx)
|
|
|
|
target_link_libraries(mycxx myc)
|
|
|
|
|
|
|
|
add_executable(mainc mainc.c)
|
|
|
|
target_link_libraries(mainc myc)
|
|
|
|
add_executable(maincxx maincxx.c)
|
|
|
|
target_link_libraries(maincxx mycxx)
|
|
|
|
|
2008-11-05 18:20:51 +03:00
|
|
|
# print out some stuff to help debug on machines via cdash
|
|
|
|
file(READ "${testf_BINARY_DIR}/foo.h" fooh)
|
|
|
|
message("foo.h contents:\n${fooh}")
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
# if the id's match or the compilers are compatible, then
|
|
|
|
# call the test_fortran_c_interface_module function
|
2011-12-15 18:20:28 +04:00
|
|
|
if("${CMAKE_Fortran_COMPILER_ID}:${CMAKE_C_COMPILER_ID}" MATCHES
|
|
|
|
"(Intel:MSVC|Absoft:GNU)"
|
2016-02-05 18:48:20 +03:00
|
|
|
OR ("${CMAKE_Fortran_COMPILER_ID}" STREQUAL "${CMAKE_C_COMPILER_ID}" ))
|
2008-11-05 18:20:51 +03:00
|
|
|
test_fortran_c_interface_module()
|
2008-11-03 20:15:59 +03:00
|
|
|
else()
|
|
|
|
message("Fortran does not match c compiler")
|
|
|
|
message("Fortran = ${CMAKE_Fortran_COMPILER_ID}")
|
|
|
|
message("C = ${CMAKE_C_COMPILER_ID}")
|
2012-08-13 21:42:58 +04:00
|
|
|
# hack to make g77 work after CL has been enabled
|
2008-11-07 01:33:42 +03:00
|
|
|
# as a languge, cmake needs language specific versions
|
|
|
|
# of these variables....
|
2014-10-14 18:25:32 +04:00
|
|
|
if(WIN32 AND CMAKE_Fortran_COMPILER_ID MATCHES "GNU")
|
2008-11-07 01:33:42 +03:00
|
|
|
set(CMAKE_CREATE_CONSOLE_EXE )
|
|
|
|
set(CMAKE_LIBRARY_PATH_FLAG "-L")
|
|
|
|
set(CMAKE_LINK_LIBRARY_FLAG "-l")
|
|
|
|
set(CMAKE_LINK_LIBRARY_SUFFIX )
|
|
|
|
endif()
|
2008-11-11 22:03:14 +03:00
|
|
|
# gnu and sunpro do not use the same flags here...
|
|
|
|
# however if LDFLAGS is used to set -m64 it causes odd stuf
|
|
|
|
# with the fortran build
|
2014-10-14 18:25:32 +04:00
|
|
|
if( (CMAKE_C_COMPILER_ID MATCHES "GNU")
|
|
|
|
AND (CMAKE_Fortran_COMPILER_ID MATCHES "SunPro"))
|
2008-11-11 22:03:14 +03:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "")
|
|
|
|
set(CMAKE_Fortran_FLAGS "")
|
2008-11-10 18:53:36 +03:00
|
|
|
endif()
|
2008-11-07 01:33:42 +03:00
|
|
|
|
2008-11-03 20:15:59 +03:00
|
|
|
endif()
|
2008-10-29 17:58:40 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-11-07 01:33:42 +03:00
|
|
|
set(TEST_MODULE_DEPENDS 0)
|
|
|
|
if(CMAKE_Fortran_COMPILER_SUPPORTS_F90)
|
|
|
|
add_executable(test_module
|
2005-02-15 17:01:14 +03:00
|
|
|
test_module_main.f90
|
|
|
|
test_module_implementation.f90
|
|
|
|
test_module_interface.f90)
|
2007-10-10 17:09:09 +04:00
|
|
|
|
2008-11-07 01:33:42 +03:00
|
|
|
add_executable(test_use_in_comment_fixedform
|
2007-10-10 17:09:09 +04:00
|
|
|
test_use_in_comment_fixedform.f)
|
2011-08-31 18:24:43 +04:00
|
|
|
set_property(SOURCE test_use_in_comment_fixedform.f PROPERTY Fortran_FORMAT FIXED)
|
2012-08-13 21:42:58 +04:00
|
|
|
add_executable(test_use_in_comment_freeform
|
2007-10-10 17:09:09 +04:00
|
|
|
test_use_in_comment_freeform.f90)
|
2011-08-31 18:24:43 +04:00
|
|
|
set_property(SOURCE test_use_in_comment_freeform.f90 PROPERTY Fortran_FORMAT FREE)
|
2007-10-10 17:09:09 +04:00
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
add_executable(test_in_interface
|
2007-10-10 17:09:09 +04:00
|
|
|
in_interface/main.f90
|
|
|
|
in_interface/module.f90)
|
|
|
|
|
2008-11-07 01:33:42 +03:00
|
|
|
add_definitions(-DFOO -DBAR=1)
|
2009-02-24 22:32:31 +03:00
|
|
|
include_directories(${testf_SOURCE_DIR}/include)
|
2015-07-06 17:21:25 +03:00
|
|
|
add_executable(test_preprocess test_preprocess.F90 test_preprocess_module.F90)
|
2008-01-09 18:30:11 +03:00
|
|
|
|
2008-11-07 01:33:42 +03:00
|
|
|
set(TEST_MODULE_DEPENDS 1)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-12-29 06:53:34 +03:00
|
|
|
|
2008-11-07 01:33:42 +03:00
|
|
|
if(TEST_MODULE_DEPENDS)
|
2007-12-28 19:50:29 +03:00
|
|
|
# Build the external project separately using a custom target.
|
|
|
|
# Make sure it uses the same build configuration as this test.
|
2008-11-07 01:33:42 +03:00
|
|
|
if(CMAKE_CONFIGURATION_TYPES)
|
|
|
|
set(External_CONFIG_TYPE -C "${CMAKE_CFG_INTDIR}")
|
2009-10-06 00:51:11 +04:00
|
|
|
set(External_BUILD_TYPE)
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2008-11-07 01:33:42 +03:00
|
|
|
set(External_CONFIG_TYPE)
|
2009-10-06 00:51:11 +04:00
|
|
|
set(External_BUILD_TYPE -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE})
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2010-01-04 18:18:44 +03:00
|
|
|
set(External_SOURCE_DIR "${testf_SOURCE_DIR}/External")
|
|
|
|
set(External_BINARY_DIR "${testf_BINARY_DIR}/External")
|
|
|
|
if("${testf_BINARY_DIR}" MATCHES " ")
|
|
|
|
# Our build tree has a space, so the build tool supports spaces.
|
|
|
|
# Test using modules from a path with spaces.
|
2016-07-28 01:43:04 +03:00
|
|
|
string(APPEND External_BINARY_DIR " Build")
|
2010-01-04 18:18:44 +03:00
|
|
|
endif()
|
2008-11-07 01:33:42 +03:00
|
|
|
add_custom_command(
|
2007-12-28 19:50:29 +03:00
|
|
|
OUTPUT ${testf_BINARY_DIR}/ExternalProject
|
|
|
|
COMMAND ${CMAKE_CTEST_COMMAND}
|
|
|
|
ARGS ${External_CONFIG_TYPE}
|
|
|
|
--build-and-test
|
2010-01-04 18:18:44 +03:00
|
|
|
${External_SOURCE_DIR}
|
|
|
|
${External_BINARY_DIR}
|
2007-12-28 19:50:29 +03:00
|
|
|
--build-noclean
|
|
|
|
--build-two-config
|
|
|
|
--build-project ExtFort
|
|
|
|
--build-generator ${CMAKE_GENERATOR}
|
2014-09-05 23:40:01 +04:00
|
|
|
--build-generator-platform "${CMAKE_GENERATOR_PLATFORM}"
|
2013-02-06 01:10:36 +04:00
|
|
|
--build-generator-toolset "${CMAKE_GENERATOR_TOOLSET}"
|
2007-12-28 19:50:29 +03:00
|
|
|
--build-options -DCMAKE_Fortran_COMPILER:STRING=${CMAKE_Fortran_COMPILER}
|
|
|
|
-DCMAKE_Fortran_FLAGS:STRING=${CMAKE_Fortran_FLAGS}
|
|
|
|
-DCMAKE_Fortran_FLAGS_DEBUG:STRING=${CMAKE_Fortran_FLAGS_DEBUG}
|
|
|
|
-DCMAKE_Fortran_FLAGS_RELEASE:STRING=${CMAKE_Fortran_FLAGS_RELEASE}
|
|
|
|
-DCMAKE_Fortran_FLAGS_MINSIZEREL:STRING=${CMAKE_Fortran_FLAGS_MINSIZEREL}
|
|
|
|
-DCMAKE_Fortran_FLAGS_RELWITHDEBINFO:STRING=${CMAKE_Fortran_FLAGS_RELWITHDEBINFO}
|
2014-03-03 21:46:41 +04:00
|
|
|
-DCMAKE_MAKE_PROGRAM:FILEPATH=${CMake_TEST_NESTED_MAKE_PROGRAM}
|
2009-10-06 00:51:11 +04:00
|
|
|
${External_BUILD_TYPE}
|
2012-12-21 18:50:40 +04:00
|
|
|
VERBATIM
|
|
|
|
)
|
2008-11-07 01:33:42 +03:00
|
|
|
add_custom_target(ExternalTarget ALL DEPENDS ${testf_BINARY_DIR}/ExternalProject)
|
2007-12-28 19:50:29 +03:00
|
|
|
|
2007-12-31 00:11:38 +03:00
|
|
|
# Test module output directory if available.
|
2008-11-07 01:33:42 +03:00
|
|
|
if(CMAKE_Fortran_MODDIR_FLAG)
|
|
|
|
set(Library_MODDIR "${testf_BINARY_DIR}/Library/modules")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2008-11-07 01:33:42 +03:00
|
|
|
set(Library_MODDIR "${testf_BINARY_DIR}/Library")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-12-31 00:11:38 +03:00
|
|
|
|
2008-11-07 01:33:42 +03:00
|
|
|
add_subdirectory(Library)
|
2016-02-05 16:55:15 +03:00
|
|
|
add_subdirectory(Subdir)
|
2008-11-07 01:33:42 +03:00
|
|
|
add_subdirectory(Executable)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|