diff --git a/changelog.md b/changelog.md index f1a13b870..c73b9adb7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,5 @@ -TGUI 1.0 (TBD) ---------------- +TGUI 1.0-rc (18 Juli 2023) +--------------------------- - Added PanelListBox widget ([PR #193](https://github.com/texus/TGUI/pull/193)) - FileDialog can now create new folders ([PR #192](https://github.com/texus/TGUI/pull/192)) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8228a6c0e..23281caed 100755 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -406,7 +406,7 @@ endif() # Generate the Config.hpp header configure_file(${PROJECT_SOURCE_DIR}/include/TGUI/Config.hpp.in ${PROJECT_SOURCE_DIR}/include/TGUI/Config.hpp @ONLY) -if(NOT TGUI_BUILD_AS_CXX_MODULE) +if(NOT TGUI_BUILD_AS_CXX_MODULE AND NOT TGUI_DISABLE_PRECOMPILED_HEADER) # Use a precompiled header to speed up compilation target_precompile_headers(tgui PRIVATE "${PROJECT_SOURCE_DIR}/include/TGUI/Widget.hpp") endif()