Skip to content

Commit caf4098

Browse files
author
Charles PIGNEROL
committed
Version 4.3.0. Porting Qt 6.
1 parent 09b5eac commit caf4098

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.12)
1+
cmake_minimum_required(VERSION 3.15)
22

33
project (QQualif CXX C)
44

cmake/version.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#
44

55
set (QQUALIF_MAJOR_VERSION "4")
6-
set (QQUALIF_MINOR_VERSION "2")
7-
set (QQUALIF_RELEASE_VERSION "1")
6+
set (QQUALIF_MINOR_VERSION "3")
7+
set (QQUALIF_RELEASE_VERSION "0")
88
set (QQUALIF_VERSION ${QQUALIF_MAJOR_VERSION}.${QQUALIF_MINOR_VERSION}.${QQUALIF_RELEASE_VERSION})
99

1010

src/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ if (BUILD_GQVtk)
1010
endif (BUILD_GQVtk)
1111
add_subdirectory (QtQualif)
1212

13-
# those two components currently only compile when either vtk, lima or
14-
# both are activated
13+
# those two components currently only compile when either vtk, lima or both are activated
1514
if (BUILD_GQLima)
1615
if (BUILD_GQVtk)
1716
add_subdirectory (QCalQual)

src/QtQualif/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ find_package (GUIToolkitsVariables)
55

66
include (${CMAKE_SOURCE_DIR}/cmake/version.cmake)
77
include (${GUIToolkitsVariables_CMAKE_DIR}/common.cmake)
8+
include (${GUIToolkitsVariables_CMAKE_DIR}/common_qt.cmake)
89
include (${GUIToolkitsVariables_CMAKE_DIR}/workarounds.cmake)
910

10-
find_package(Qt5Core NO_CMAKE_SYSTEM_PATH) # In order to enable moc ...
11+
find_package(Qt${QT_MAJOR}Core NO_CMAKE_SYSTEM_PATH) # In order to enable moc ...
1112
find_package (QwtCharts 5 REQUIRED)
1213

1314
file (GLOB HEADERS public/${CURRENT_PACKAGE_NAME}/*.h)

src/QtQualif/QtQualifWidget.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
#include <QHBoxLayout>
1919
#include <QLabel>
2020

21+
#include <qwt_text.h>
22+
2123
#include <assert.h>
2224
#include <iostream>
2325
#include <memory>

versions.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 4.3.0 : 13/12/23
2+
===============
3+
4+
Portage Qt 6/GUIToolkitsVariables v 1.4.0/QwtCharts v 5.3.0.
5+
6+
17
Version 4.2.0 : 21/06/23
28
===============
39

0 commit comments

Comments
 (0)