summaryrefslogtreecommitdiffstats
path: root/Tests/Fortran/Executable
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Fortran/Executable')
-rw-r--r--Tests/Fortran/Executable/CMakeLists.txt8
-rw-r--r--Tests/Fortran/Executable/main.f907
2 files changed, 0 insertions, 15 deletions
diff --git a/Tests/Fortran/Executable/CMakeLists.txt b/Tests/Fortran/Executable/CMakeLists.txt
deleted file mode 100644
index de08d86..0000000
--- a/Tests/Fortran/Executable/CMakeLists.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-include_directories(${Library_MODDIR})
-include_directories(${External_BINARY_DIR})
-link_directories(${External_BINARY_DIR})
-
-add_executable(subdir_exe2 main.f90)
-target_link_libraries(subdir_exe2 subdir_mods subdir_mods2)
-add_dependencies(subdir_exe2 ExternalTarget)
-target_link_libraries(subdir_exe2 myext)
diff --git a/Tests/Fortran/Executable/main.f90 b/Tests/Fortran/Executable/main.f90
deleted file mode 100644
index 640259c..0000000
--- a/Tests/Fortran/Executable/main.f90
+++ /dev/null
@@ -1,7 +0,0 @@
-PROGRAM MAINF90
- USE libraryModuleA
- USE libraryModuleB
- USE subdirModuleA
- USE externalMod
- CALL printExtModGreeting
-END PROGRAM MAINF90