[cmake-commits] king committed CMakeLists.txt NONE 1.1 a.f90 NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Dec 28 11:50:31 EST 2007


Update of /cvsroot/CMake/CMake/Tests/Fortran/External
In directory public:/mounts/ram/cvs-serv12034/Tests/Fortran/External

Added Files:
	CMakeLists.txt a.f90 
Log Message:
ENH: Add tests of Fortran module dependencies across directories and on external modules.  Tests based on cases provided by Maik in issue #5809.


--- NEW FILE: a.f90 ---
MODULE externalMod
!
CONTAINS
    SUBROUTINE printExtModGreeting
        WRITE(*,*) "Greetings from Module externalMod"
    END SUBROUTINE
END MODULE

--- NEW FILE: CMakeLists.txt ---
project(ExtFort Fortran)

add_library(myext a.f90)




More information about the Cmake-commits mailing list