summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-03-07 00:12:40 +0100
committerMatthias Melcher <github@matthiasm.com>2025-03-07 00:12:40 +0100
commit3068c7a0af0afbad572f88e074235853fd8be34c (patch)
tree56011d5e67022f7f68c3ff1581d0598a5a37fc40 /CMakeLists.txt
parent27101536f6a75294ebaa196d82c3ef13eb0a705a (diff)
Fl_String is now just an alias for std::string.
All mentions of Fl_String will be replaced with std::string and the Fl_String implementation will be removed.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c8f24dde8..da59bcd46 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -35,6 +35,9 @@ cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
project(FLTK VERSION 1.5.0)
+set(CMAKE_CXX_STANDARD 11)
+set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
+
#######################################################################
# include macro and function definitions for general usage
#######################################################################