forked from qt-creator/qt-creator
Since we almost always do incremental changes instead of major overhauls in one go, it doesn't make sense to couple changes in the major release number to major feature overhauls (which is why we've stayed at "4" since a few years now). Switch to a version scheme more like semantic versioning. So next feature release is 5.0, and the following feature-release after 5.0 will be 6.0, and so on. After all we do break public API in these releases. Fixes: QTCREATORBUG-25486 Change-Id: Id8510dd75077386e59c537a0c9768f27120a998a Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Paul Wicking <paul.wicking@qt.io>
16 lines
1009 B
CMake
16 lines
1009 B
CMake
set(IDE_VERSION "4.82.0") # The IDE version.
|
|
set(IDE_VERSION_COMPAT "4.82.0") # The IDE Compatibility version.
|
|
set(IDE_VERSION_DISPLAY "5.0.0-beta1") # The IDE display version.
|
|
set(IDE_COPYRIGHT_YEAR "2021") # The IDE current copyright year.
|
|
|
|
set(IDE_SETTINGSVARIANT "QtProject") # The IDE settings variation.
|
|
set(IDE_COPY_SETTINGSVARIANT "Nokia") # The IDE settings to initially import.
|
|
set(IDE_DISPLAY_NAME "Qt Creator") # The IDE display name.
|
|
set(IDE_ID "qtcreator") # The IDE id (no spaces, lowercase!)
|
|
set(IDE_CASED_ID "QtCreator") # The cased IDE id (no spaces!)
|
|
set(IDE_BUNDLE_IDENTIFIER "org.qt-project.${IDE_ID}") # The macOS application bundle identifier.
|
|
|
|
set(PROJECT_USER_FILE_EXTENSION .user)
|
|
set(IDE_DOC_FILE "qtcreator/qtcreator.qdocconf")
|
|
set(IDE_DOC_FILE_ONLINE "qtcreator/qtcreator-online.qdocconf")
|