aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/fortran/15 include/subprojects
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/fortran/15 include/subprojects')
-rw-r--r--meson/test cases/fortran/15 include/subprojects/cmake_inc/CMakeLists.txt4
-rw-r--r--meson/test cases/fortran/15 include/subprojects/cmake_inc/main.f909
-rw-r--r--meson/test cases/fortran/15 include/subprojects/cmake_inc/thousand.f901
3 files changed, 14 insertions, 0 deletions
diff --git a/meson/test cases/fortran/15 include/subprojects/cmake_inc/CMakeLists.txt b/meson/test cases/fortran/15 include/subprojects/cmake_inc/CMakeLists.txt
new file mode 100644
index 000000000..1ffe88267
--- /dev/null
+++ b/meson/test cases/fortran/15 include/subprojects/cmake_inc/CMakeLists.txt
@@ -0,0 +1,4 @@
+cmake_minimum_required(VERSION 3.17)
+project(cmake_inc LANGUAGES Fortran)
+
+add_executable(main main.f90)
diff --git a/meson/test cases/fortran/15 include/subprojects/cmake_inc/main.f90 b/meson/test cases/fortran/15 include/subprojects/cmake_inc/main.f90
new file mode 100644
index 000000000..dd2991d03
--- /dev/null
+++ b/meson/test cases/fortran/15 include/subprojects/cmake_inc/main.f90
@@ -0,0 +1,9 @@
+program test_subproject_inc
+
+implicit none
+
+include 'thousand.f90'
+
+if (thousand /= 1000) error stop 'did not include properly'
+
+end program
diff --git a/meson/test cases/fortran/15 include/subprojects/cmake_inc/thousand.f90 b/meson/test cases/fortran/15 include/subprojects/cmake_inc/thousand.f90
new file mode 100644
index 000000000..08a4048bc
--- /dev/null
+++ b/meson/test cases/fortran/15 include/subprojects/cmake_inc/thousand.f90
@@ -0,0 +1 @@
+integer, parameter :: thousand = 1000