Skip to content

Commit

Permalink
Pre-release changes (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsujan authored Nov 3, 2020
1 parent 38dd525 commit ef05564
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.2.0 / 2020-11-01
==================
* Avoided compiler warnings.
* Avoided overflow in "proc.cpp".

qps-2.1.0 / 2020-04-23
======================
* Fixed IO_R column and IO_W column.
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ Project(qps)
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" OFF)

set(MAJOR_VERSION 2)
set(MINOR_VERSION 1)
set(MINOR_VERSION 2)
set(PATCH_VERSION 0)
set(QPS_VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION})
add_definitions(
-DQPS_VERSION="${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}"
)

# Minimum Versions
set(LXQTBT_MINIMUM_VERSION "0.7.0")
set(LXQT_MINIMUM_VERSION "0.15.0")
set(QT_MINIMUM_VERSION "5.10.0")
set(LXQTBT_MINIMUM_VERSION "0.8.0")
set(LXQT_MINIMUM_VERSION "0.16.0")
set(QT_MINIMUM_VERSION "5.12.0")

find_package(lxqt ${LXQT_MINIMUM_VERSION} REQUIRED)
find_package(Qt5 ${QT_MINIMUM_VERSION} REQUIRED COMPONENTS Widgets X11Extras DBus LinguistTools)
Expand Down

0 comments on commit ef05564

Please sign in to comment.