From 1e995b7980fb9792f39a269998a2e84af7bf4050 Mon Sep 17 00:00:00 2001 From: Laurent Van Migroet <l.vanmiegroet@ulg.ac.be> Date: Thu, 13 May 2010 20:59:37 +0000 Subject: [PATCH] Added warning in cmake in case of enable_msvc_static_runtime ON that shared library won't link --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4689df0543..ec540aa280 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -859,6 +859,10 @@ set_target_properties(shared PROPERTIES OUTPUT_NAME Gmsh) if(HAVE_LAPACK AND LAPACK_FLAGS) set_target_properties(shared PROPERTIES LINK_FLAGS ${LAPACK_FLAGS}) endif(HAVE_LAPACK AND LAPACK_FLAGS) +IF(MSVC AND ENABLE_MSVC_STATIC_RUNTIME) +message("WARNING: By enabling ENABLE_MSVC_STATIC_RUNTIME, shared library wont link." +"Change in msvc /MT flag to /MD in the shared project properties") +ENDIF(MSVC AND ENABLE_MSVC_STATIC_RUNTIME) target_link_libraries(shared ${LINK_LIBRARIES}) # binary targets -- GitLab