diff --git a/CHANGELOG.md b/CHANGELOG.md index 77753dbaf82..8c2f0242e48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ - Dev: Removed unused timegate settings. (#5361) - Dev: All Lua globals now show in the `c2` global in the LuaLS metadata. (#5385) - Dev: Images are now loaded in worker threads. (#5431) +- Dev: Qt Creator now auto-configures Conan when loading the project and skips vcpkg. (#5305) - Dev: The MSVC CRT is now bundled with Chatterino as it depends on having a recent version installed. (#5447) ## 2.5.1 diff --git a/QtCreatorPackageManager.cmake b/QtCreatorPackageManager.cmake new file mode 100644 index 00000000000..f26a970c81e --- /dev/null +++ b/QtCreatorPackageManager.cmake @@ -0,0 +1,5 @@ +# https://www.qt.io/blog/qt-creator-cmake-package-manager-auto-setup + +# set(QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP ON) # skip both conan and vcpkg auto-setups +# set(QT_CREATOR_SKIP_CONAN_SETUP ON) # skip conan auto-setup +set(QT_CREATOR_SKIP_VCPKG_SETUP ON) # skip vcpkg auto-setup