summaryrefslogtreecommitdiff
path: root/README.CMake.txt
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2024-10-09 16:01:54 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2024-10-09 16:04:38 +0200
commit81d3ccefa4b6c3cbaeab20231b2c39705dfb3fb8 (patch)
tree7bf0ff43642849f8215ff97e900d8248b81394fb /README.CMake.txt
parent99c36b44ac0191e8d6052e418de1a9eb6fac7378 (diff)
CMake: ignore FLTK_MSVC_RUNTIME_DLL on other platforms
This commit suppresses a CMake warning if FLTK_MSVC_RUNTIME_DLL is defined on the CMake commandline on platforms that don't use it.
Diffstat (limited to 'README.CMake.txt')
-rw-r--r--README.CMake.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.CMake.txt b/README.CMake.txt
index 37c47ee4a..2fd48223b 100644
--- a/README.CMake.txt
+++ b/README.CMake.txt
@@ -217,10 +217,11 @@ FLTK_GRAPHICS_GDIPLUS - default ON (Windows only).
Make FLTK use GDI+ to draw oblique lines and curves resulting in
antialiased graphics. If this option is OFF standard GDI is used.
-FLTK_MSVC_RUNTIME_DLL - default ON (Windows only: Visual Studio and NMake).
+FLTK_MSVC_RUNTIME_DLL - default ON (Windows: Visual Studio, NMake, clang).
Select whether the build uses the MS runtime DLL (ON) or not (OFF).
Default is ON: either /MD or /MDd for Release or Debug, respectively.
Select OFF for either /MT or /MTd for Release or Debug, respectively.
+ If this variable is defined on other platforms it is silently ignored.
FLTK_OPTION_CAIRO_EXT - default OFF
Enable extended libcairo support - see README.Cairo.txt.