add unit test for a simple fortran project

This commit is contained in:
Radovan Bast
2015-06-01 15:49:13 +02:00
parent d325282a76
commit 340f47b9cb
4 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1 @@
add_executable(example example.f90)

View File

@@ -0,0 +1,4 @@
program example
implicit none
print *, 'Hello World!'
end program