From: Fletcher T. Penney Date: Fri, 13 Nov 2015 00:19:04 +0000 (-0500) Subject: add comment about static libraries X-Git-Tag: 0.1.0a~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af449f48bdb94c94bed8554174bcca70a3fbd8e3;p=multimarkdown add comment about static libraries --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 078636f..4f5fb23 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -175,6 +175,10 @@ elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux") # Statically link libraries -- might make the binary slightly more # compatible across Linux distributions, for example + # + # You may wish to disable this. + # + set (CMAKE_FIND_LIBRARY_SUFFIXES ".a") set (BUILD_SHARED_LIBRARIES OFF) set (CMAKE_EXE_LINKER_FLAGS "-static")