summaryrefslogtreecommitdiffstats
path: root/c++/examples
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-11-12 16:50:50 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-11-12 16:50:50 (GMT)
commit14bfa9a99143e9170c5ce2cdfc0c30e40d466dfd (patch)
tree4ca149140292b31b037aa0bb7f829dcc90846877 /c++/examples
parentc768326d6837592040fde08d62b25c86ae0f4acf (diff)
downloadhdf5-14bfa9a99143e9170c5ce2cdfc0c30e40d466dfd.zip
hdf5-14bfa9a99143e9170c5ce2cdfc0c30e40d466dfd.tar.gz
hdf5-14bfa9a99143e9170c5ce2cdfc0c30e40d466dfd.tar.bz2
Correct TARGET variable and CMake config file location
Diffstat (limited to 'c++/examples')
-rw-r--r--c++/examples/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/examples/CMakeLists.txt b/c++/examples/CMakeLists.txt
index 3035841..c50315f 100644
--- a/c++/examples/CMakeLists.txt
+++ b/c++/examples/CMakeLists.txt
@@ -41,7 +41,7 @@ foreach (example ${examples})
else ()
TARGET_C_PROPERTIES (cpp_ex_${example} SHARED)
target_link_libraries (cpp_ex_${example} PRIVATE ${HDF5_CPP_LIBSH_TARGET} ${HDF5_LIBSH_TARGET})
- if (MINGW)
+ if (MINGW AND HDF5_MINGW_STATIC_GCC_LIBS)
target_link_options (${HDF5_CPP_LIBSH_TARGET}
PRIVATE -static-libgcc -static-libstdc++
)
@@ -66,7 +66,7 @@ foreach (example ${tutr_examples})
else ()
TARGET_C_PROPERTIES (cpp_ex_${example} SHARED)
target_link_libraries (cpp_ex_${example} PRIVATE ${HDF5_CPP_LIBSH_TARGET} ${HDF5_LIBSH_TARGET})
- if (MINGW)
+ if (MINGW AND HDF5_MINGW_STATIC_GCC_LIBS)
target_link_options (${HDF5_CPP_LIBSH_TARGET}
PRIVATE -static-libgcc -static-libstdc++
)