rename
This commit is contained in:
16
test/fc/cmake/autocmake.cfg
Normal file
16
test/fc/cmake/autocmake.cfg
Normal file
@ -0,0 +1,16 @@
|
||||
[project]
|
||||
name: example
|
||||
|
||||
[fortran]
|
||||
source: https://github.com/scisoft/autocmake/raw/master/modules/fc.cmake
|
||||
docopt: --fc=<FC> Fortran compiler [default: gfortran].
|
||||
export: 'FC=%s' % arguments['--fc']
|
||||
|
||||
[compilers]
|
||||
source: https://github.com/scisoft/autocmake/raw/master/compilers/GNU.Fortran.cmake
|
||||
|
||||
[default_build_paths]
|
||||
source: https://github.com/scisoft/autocmake/raw/master/modules/default_build_paths.cmake
|
||||
|
||||
[src]
|
||||
source: https://github.com/scisoft/autocmake/raw/master/modules/src.cmake
|
1
test/fc/src/CMakeLists.txt
Normal file
1
test/fc/src/CMakeLists.txt
Normal file
@ -0,0 +1 @@
|
||||
add_executable(example example.f90)
|
4
test/fc/src/example.f90
Normal file
4
test/fc/src/example.f90
Normal file
@ -0,0 +1,4 @@
|
||||
program example
|
||||
implicit none
|
||||
print *, 'Hello World!'
|
||||
end program
|
Reference in New Issue
Block a user