We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f69000 commit cffc8a1Copy full SHA for cffc8a1
config/meson.build
@@ -27,6 +27,11 @@ elif fc_id == 'intel'
27
'-traceback',
28
language: 'fortran',
29
)
30
+elif fc_id == 'intel-cl'
31
+ add_project_arguments(
32
+ '-fpp',
33
+ language: 'fortran',
34
+ )
35
elif fc_id == 'pgi' or fc_id == 'nvidia_hpc'
36
add_project_arguments(
37
'-Mbackslash',
subprojects/packagefiles/json-fortran-8.2.5/meson.build
@@ -4,6 +4,14 @@ project(
4
version: files('.VERSION'),
5
6
7
+fc = meson.get_compiler('fortran')
8
+if fc.get_id() == 'intel-cl'
9
10
11
12
13
+endif
14
+
15
jsonfortran_lib = library(
16
meson.project_name(),
17
sources: files(
0 commit comments