summaryrefslogtreecommitdiffstats
path: root/hl/fortran/examples
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-05-03 14:28:54 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-05-03 14:28:54 (GMT)
commit1ab0814a4320eb8a4b93a85048419302218aeb34 (patch)
treedae7210c38c536d23799415a9e89c47dd02287ee /hl/fortran/examples
parentb73c0d2ab8c814634e44fa2d4b22abfaacdc1b67 (diff)
downloadhdf5-1ab0814a4320eb8a4b93a85048419302218aeb34.zip
hdf5-1ab0814a4320eb8a4b93a85048419302218aeb34.tar.gz
hdf5-1ab0814a4320eb8a4b93a85048419302218aeb34.tar.bz2
Fix link flags syntax
Diffstat (limited to 'hl/fortran/examples')
-rw-r--r--hl/fortran/examples/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/hl/fortran/examples/CMakeLists.txt b/hl/fortran/examples/CMakeLists.txt
index a218de5..05cfaa4 100644
--- a/hl/fortran/examples/CMakeLists.txt
+++ b/hl/fortran/examples/CMakeLists.txt
@@ -23,9 +23,9 @@ foreach (example ${examples})
set_target_properties (hl_f90_ex_${example} PROPERTIES
LINKER_LANGUAGE Fortran
FOLDER examples/hl/fortran
- LINK_FLAGS ""
- $<$<STREQUAL:"x${CMAKE_Fortran_SIMULATE_ID}","xMSVC">:"-SUBSYSTEM:CONSOLE">
- $<$<STREQUAL:"x${CMAKE_Fortran_SIMULATE_ID}","xMSVC">:${WIN_LINK_FLAGS}>
+ LINK_FLAGS
+ "$<$<STREQUAL:\"x${CMAKE_Fortran_SIMULATE_ID}\",\"xMSVC\">:\"-SUBSYSTEM:CONSOLE\">
+ $<$<STREQUAL:\"x${CMAKE_Fortran_SIMULATE_ID}\",\"xMSVC\">:${WIN_LINK_FLAGS}>"
)
endforeach ()