diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2011-12-09 23:04:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-02-09 13:33:57 (GMT) |
commit | 538c3452ad660a45c3d6ca32f8c09ee7c93a8b84 (patch) | |
tree | 411effeac65ff00e7dfc2d22da9f74906f4f5e52 /Tests/CMakeLists.txt | |
parent | 3c6af5ff33a12b3c5603cba06e575fe62e234ce0 (diff) | |
download | CMake-538c3452ad660a45c3d6ca32f8c09ee7c93a8b84.zip CMake-538c3452ad660a45c3d6ca32f8c09ee7c93a8b84.tar.gz CMake-538c3452ad660a45c3d6ca32f8c09ee7c93a8b84.tar.bz2 |
Add CMakeAddFortranSubdirectory to use MinGW gfortran in VS
This patch adds a new module that allows for easy integration of MinGW
gfortran and the Visual Studio compiler. It is done in a function called
cmake_add_fortran_subdirectory. The patch also includes a test for this
feature.
Diffstat (limited to 'Tests/CMakeLists.txt')
-rw-r--r-- | Tests/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 906b40d..e949887 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -163,6 +163,15 @@ IF(BUILD_TESTING) IF(CMAKE_Fortran_COMPILER) ADD_TEST_MACRO(FortranOnly FortranOnly) ENDIF() + # test Visual Studio GNU Fortran mixing with cmake_add_fortran_subdirectory + # run this project if we have a working fortran compiler or + # the test is enabled with CMAKE_TEST_CMAKE_ADD_FORTRAN cache variable. + # If you enable the test, CMake should find the MinGW fortran install, + # or in some cases you might need to set the PATH so that cmake can find + # the gfortran from mingw. + IF(CMAKE_Fortran_COMPILER OR CMAKE_TEST_CMAKE_ADD_FORTRAN) + ADD_TEST_MACRO(VSGNUFortran ${CMAKE_COMMAND} -P runtest.cmake) + ENDIF() ADD_TEST_MACRO(COnly COnly) ADD_TEST_MACRO(CxxOnly CxxOnly) ADD_TEST_MACRO(IPO COnly/COnly) |