From b3cf236b34c386a9cbff81ffc1631554bd60ee1b Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Fri, 23 Apr 2021 15:53:36 +0200 Subject: Port to CMake Qt is slowly deprecating QMake. They have stopped building Qt itself with QMake and moved Qt6 to CMake instead. Although QMake is still around, it's clear the focus has shifted and it would be good for applications to switch over to an alternative build system as well So hereby, switch the build system to CMake --- src/CMakeLists.txt | 8 ++++ src/compass.svg | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++ src/main.cpp | 23 +++++++++++ src/main.qml | 58 ++++++++++++++++++++++++++++ src/resources.qrc | 6 +++ 5 files changed, 204 insertions(+) create mode 100644 src/CMakeLists.txt create mode 100644 src/compass.svg create mode 100644 src/main.cpp create mode 100644 src/main.qml create mode 100644 src/resources.qrc (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..a9ef740 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,8 @@ +add_library(asteroid-compass main.cpp resources.qrc) +set_target_properties(asteroid-compass PROPERTIES PREFIX "" SUFFIX "") + +target_link_libraries(asteroid-compass PUBLIC + AsteroidApp) + +install(TARGETS asteroid-compass + DESTINATION ${CMAKE_INSTALL_BINDIR}) diff --git a/src/compass.svg b/src/compass.svg new file mode 100644 index 0000000..95d62a1 --- /dev/null +++ b/src/compass.svg @@ -0,0 +1,109 @@ + + + +image/svg+xmlN +S + \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..a44544c --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2017 - Florent Revest + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include + +int main(int argc, char *argv[]) +{ + return AsteroidApp::main(argc, argv); +} diff --git a/src/main.qml b/src/main.qml new file mode 100644 index 0000000..f6c171c --- /dev/null +++ b/src/main.qml @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2017 - Florent Revest + * - Niels Tholenaar + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +import QtQuick 2.5 +import org.asteroid.controls 1.0 +import QtSensors 5.3 + +Application { + id: app + + centerColor: "#4cd479" + outerColor: "#1c723a" + + property int rotation: 0; + property int calibration: 0; + + Compass { + active: true + onReadingChanged: { + app.rotation = reading.azimuth; + app.calibration = reading.calibrationLevel; + } + } + + Image { + anchors.fill: parent + anchors.margins: Dims.l(15) + fillMode: Image.PreserveAspectFit + source: "qrc:///compass.svg" + rotation: -app.rotation + height: 200; + sourceSize.width: width + sourceSize.height: height + } + + Label { + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: Dims.l(7) + font.pixelSize: Dims.l(5) + text: app.rotation + " °N Calibrated: " + app.calibration + } +} diff --git a/src/resources.qrc b/src/resources.qrc new file mode 100644 index 0000000..acd1a74 --- /dev/null +++ b/src/resources.qrc @@ -0,0 +1,6 @@ + + + main.qml + compass.svg + + -- cgit v1.2.3-54-g00ecf