Skip to content

Commit

Permalink
Merge pull request #52 from lxqt/prepare_for_release
Browse files Browse the repository at this point in the history
Bump version and min. Qt version
  • Loading branch information
tsujan authored Apr 21, 2020
2 parents 741bd32 + 42cd478 commit 768fc23
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
lxqt-build-tools-0.7.0 / 2020-04-21
===================================
* Bump version to 0.7.0.
* Initial support for Xcode (AppleClang and ld64).
* Added a section for settings related to CMake build.
* Set C++ extensions to be disabled.
* Forbid string casts in LXQtCompilerSettings.
* Added a FindClazy CMake module.
* Enabled Clazy option when building with clang.
* Adds CMake find modules for some xdg-utils tools.
* The minimum Qt version is bumped to 5.10.0.

lxqt-build-tools-0.6.0 / 2018-01-25
===================================
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ project(lxqt-build-tools)
option(WITH_XDG_DIRS_FALLBACK "Use our XDG_CONFIG_DIRS fallback" ON)

set(LXQT_BUILD_TOOLS_MAJOR_VERSION 0)
set(LXQT_BUILD_TOOLS_MINOR_VERSION 6)
set(LXQT_BUILD_TOOLS_MINOR_VERSION 7)
set(LXQT_BUILD_TOOLS_PATCH_VERSION 0)
set(LXQT_BUILD_TOOLS_VERSION ${LXQT_BUILD_TOOLS_MAJOR_VERSION}.${LXQT_BUILD_TOOLS_MINOR_VERSION}.${LXQT_BUILD_TOOLS_PATCH_VERSION})


# Check for needed versions
# We need at least Qt 5.7.1 and glib-2.0 >= 2.50 to build all LXQt parts
# We need at least Qt 5.10.0 and glib-2.0 >= 2.50 to build all LXQt parts
find_package(PkgConfig REQUIRED)
find_package(Qt5Core "5.7.1" REQUIRED)
find_package(Qt5Core "5.10.0" REQUIRED)
pkg_check_modules(GLIB2 glib-2.0>=2.50 REQUIRED)

include(CMakePackageConfigHelpers)
Expand Down

0 comments on commit 768fc23

Please sign in to comment.