From bfee89e3c43fba8e7ccd394c82981c1a3fa37bd2 Mon Sep 17 00:00:00 2001 From: Maarten Bent Date: Sun, 29 Jul 2018 11:23:46 +0200 Subject: [PATCH] CMake: Auto-enable wxUSE_STD_CONTAINERS when wxUSE_STL is enabled --- build/cmake/options.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/cmake/options.cmake b/build/cmake/options.cmake index cb694379f3..4a3d18a533 100644 --- a/build/cmake/options.cmake +++ b/build/cmake/options.cmake @@ -43,7 +43,7 @@ endif() # STL options wx_option(wxUSE_STL "use standard C++ classes for everything" OFF) -wx_dependent_option(wxUSE_STD_CONTAINERS "use standard C++ container classes" OFF "wxUSE_STL" OFF) +wx_dependent_option(wxUSE_STD_CONTAINERS "use standard C++ container classes" ON "wxUSE_STL" OFF) wx_option(wxUSE_UNICODE "compile with Unicode support (NOT RECOMMENDED to be turned off)") if(NOT WIN32)