Skip to content

Commit 25a2c3c

Browse files
committed
Release v2.7
2 parents a823aa9 + 0d11077 commit 25a2c3c

844 files changed

Lines changed: 853 additions & 849 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CMakeLists.txt

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
cmake_minimum_required (VERSION 3.10)
22
project ("cc_ublox_cc_tools_qt_plugin")
33

4-
# Configuration variables
4+
# Build options:
5+
option (OPT_INSTALL_DEFAULT_CONFIG "Install default plugin configuration" ON)
6+
7+
# Configuration variables:
58
# OPT_QT_MAJOR_VERSION - The major Qt version, defaults to 5
69

710
######################################################################
@@ -514,10 +517,11 @@ function (cc_plugin protocol has_config_widget)
514517
TARGETS ${name}
515518
DESTINATION ${CMAKE_INSTALL_FULL_LIBDIR}/cc_tools_qt/plugin)
516519

517-
install (
518-
FILES cc_tools_qt_plugin/cc_ublox/plugin/${protocol}.cfg
519-
DESTINATION ${CMAKE_INSTALL_FULL_DATAROOTDIR}/cc_tools_qt)
520-
520+
if (OPT_INSTALL_DEFAULT_CONFIG)
521+
install (
522+
FILES cc_tools_qt_plugin/cc_ublox/plugin/${protocol}.cfg
523+
DESTINATION ${CMAKE_INSTALL_FULL_DATAROOTDIR}/cc_tools_qt)
524+
endif()
521525
endfunction()
522526

523527
######################################################################

cc_tools_qt_plugin/cc_ublox/Message.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#include "Message.h"
44

cc_tools_qt_plugin/cc_ublox/Message.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#pragma once
44

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#pragma once
44

55
#include "cc_tools_qt/version.h"
66

7-
static_assert(CC_TOOLS_QT_MAKE_VERSION(5, 1, 0) <= cc_tools_qt::version(),
7+
static_assert(CC_TOOLS_QT_MAKE_VERSION(5, 2, 1) <= cc_tools_qt::version(),
88
"The version of cc_tools_qt library is too old");

cc_tools_qt_plugin/cc_ublox/factory/AllMessagesDynMemMsgFactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#include "cc_tools_qt_plugin/cc_ublox/factory/AllMessagesDynMemMsgFactory.h"
44
#include "cc_tools_qt_plugin/cc_ublox/input/AllMessages.h"

cc_tools_qt_plugin/cc_ublox/factory/AllMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#pragma once
44

cc_tools_qt_plugin/cc_ublox/field/Alt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#include "Alt.h"
44

cc_tools_qt_plugin/cc_ublox/field/Alt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#pragma once
44

cc_tools_qt_plugin/cc_ublox/field/AltHP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#include "AltHP.h"
44

cc_tools_qt_plugin/cc_ublox/field/AltHP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v6.3.0
1+
// Generated by commsdsl2tools_qt v6.3.2
22

33
#pragma once
44

0 commit comments

Comments
 (0)