Skip to content

Commit 5fc6056

Browse files
authored
Merge master into release
2 parents ac4b084 + 3745618 commit 5fc6056

File tree

253 files changed

+58041
-39597
lines changed

Some content is hidden

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

253 files changed

+58041
-39597
lines changed

3rd-party/cove/libvectorizer/Concurrency.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace Concurrency {
4646
* is const in order to ensure thread safety also in accessing this object
4747
* (cf. std::shared_ptr documentation).
4848
*/
49-
class Progress : public ProgressObserver
49+
class Progress final : public ProgressObserver
5050
{
5151
private:
5252
struct Data
@@ -62,7 +62,7 @@ class Progress : public ProgressObserver
6262
Progress(Progress&& p) = delete;
6363
Progress& operator=(const Progress&) = delete;
6464
Progress& operator=(Progress&& p) = delete;
65-
~Progress() final = default;
65+
~Progress() override = default;
6666

6767
int getPercentage() const noexcept;
6868
void setPercentage(int percentage) final;

3rd-party/cove/tests/CMakeLists.txt

+7
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ find_package(Qt5Test ${Qt5Core_VERSION} REQUIRED)
99
set(CMAKE_CXX_STANDARD 14)
1010
set(CMAKE_AUTOMOC ON)
1111

12+
configure_file(test_config.h.in test_config.h)
13+
add_library(cove-test-config INTERFACE)
14+
target_include_directories(cove-test-config INTERFACE "${CMAKE_CURRENT_BINARY_DIR}")
15+
1216
add_executable(cove-ParallelImageProcessingTest
1317
ParallelImageProcessingTest.cpp
1418
)
@@ -23,6 +27,9 @@ endif()
2327
add_executable(cove-PolygonTest
2428
PolygonTest.cpp
2529
)
30+
target_link_libraries(cove-PolygonTest
31+
PRIVATE cove-test-config
32+
)
2633
add_test(
2734
NAME cove-PolygonTest
2835
COMMAND cove-PolygonTest

3rd-party/cove/tests/PolygonTest.cpp

+13-5
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,16 @@
3131
#include <QtTest>
3232
#include <QByteArray>
3333
#include <QDataStream>
34+
#include <QDir>
3435
#include <QFile>
3536
#include <QIODevice>
3637
#include <QImage>
3738
#include <QPointF>
3839

3940
#include "libvectorizer/Polygons.h"
4041

42+
#include "test_config.h"
43+
4144
// Benchmarking adds significant overhead when enabled.
4245
// With the focus on (CI) testing, we default to disabling benchmarking
4346
// by defining COVE_BENCHMARK as an empty macro here, and let CMake set
@@ -46,6 +49,11 @@
4649
# define COVE_BENCHMARK
4750
#endif
4851

52+
void PolygonTest::initTestCase()
53+
{
54+
QDir::addSearchPath(QStringLiteral("testdata"), QDir(QString::fromUtf8(COVE_TEST_SOURCE_DIR)).absoluteFilePath(QStringLiteral("data")));
55+
}
56+
4957
void PolygonTest::testJoins_data()
5058
{
5159
QTest::addColumn<bool>("simpleOnly");
@@ -56,8 +64,8 @@ void PolygonTest::testJoins_data()
5664
QTest::addColumn<QString>("resultFile");
5765

5866
QTest::newRow("simple joins")
59-
<< true << 5.0 << 9 << 0.0 << "data/PolygonTest1-sample.png"
60-
<< "data/PolygonTest1-simple-joins-result.dat";
67+
<< true << 5.0 << 9 << 0.0 << "testdata:PolygonTest1-sample.png"
68+
<< "testdata:PolygonTest1-simple-joins-result.dat";
6169
}
6270

6371
void PolygonTest::testJoins()
@@ -72,7 +80,7 @@ void PolygonTest::testJoins()
7280
QFETCH(QString, imageFile);
7381
QFETCH(QString, resultFile);
7482

75-
QVERIFY(sampleImage.load(QFINDTESTDATA(imageFile)));
83+
QVERIFY(sampleImage.load(imageFile));
7684

7785
polyTracer.setSimpleOnly(simpleOnly);
7886
polyTracer.setMaxDistance(maxDistance);
@@ -85,8 +93,8 @@ void PolygonTest::testJoins()
8593
polys = polyTracer.createPolygonsFromImage(sampleImage);
8694
}
8795

88-
// saveResults(polys, QFINDTESTDATA(resultFile));
89-
compareResults(polys, QFINDTESTDATA(resultFile));
96+
// saveResults(polys, resultFile);
97+
compareResults(polys, resultFile);
9098
}
9199

92100
void PolygonTest::saveResults(const cove::PolygonList& polys,

3rd-party/cove/tests/PolygonTest.h

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ class PolygonTest : public QObject
2626
{
2727
Q_OBJECT
2828
private slots:
29+
void initTestCase();
30+
2931
void testJoins_data();
3032
void testJoins();
3133

3rd-party/cove/tests/test_config.h.in

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*
2+
* Copyright 2020 Kai Pastor
3+
*
4+
* This file is part of OpenOrienteering.
5+
*
6+
* OpenOrienteering is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* OpenOrienteering is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with OpenOrienteering. If not, see <http://www.gnu.org/licenses/>.
18+
*/
19+
20+
#ifndef COVE_TEST_CONFIG_H
21+
#define COVE_TEST_CONFIG_H
22+
23+
#define COVE_TEST_SOURCE_DIR "@CMAKE_CURRENT_SOURCE_DIR@"
24+
25+
#endif

CMakeLists.txt

+37-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Copyright 2012, 2013, 2014 Thomas Schöps
3-
# Copyright 2012-2020 Kai Pastor
3+
# Copyright 2012-2021 Kai Pastor
44
#
55
# This file is part of OpenOrienteering.
66
#
@@ -27,10 +27,12 @@ if(CCACHE_PROGRAM)
2727
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
2828
endif()
2929

30+
option(CMAKE_FIND_PACKAGE_PREFER_CONFIG "Lookup package config files before using find modules" ON)
31+
3032
# Project declaration
3133

32-
project(Mapper VERSION 0.9.4 LANGUAGES CXX C)
33-
set(Mapper_COPYRIGHT "(C) 2020 The OpenOrienteering developers")
34+
project(Mapper VERSION 0.9.5 LANGUAGES CXX C)
35+
set(Mapper_COPYRIGHT "(C) 2021 The OpenOrienteering developers")
3436

3537
math(EXPR Mapper_VERSION_CODE "${Mapper_VERSION_MAJOR} * 10000 + ${Mapper_VERSION_MINOR} * 100 + ${Mapper_VERSION_PATCH} * 2 + ${CMAKE_SIZEOF_VOID_P} / 4 - 1")
3638

@@ -63,8 +65,10 @@ endif()
6365

6466
option(Mapper_DEBUG_TRANSLATIONS "Debug missing translations" OFF)
6567

66-
# Used for some Linux distributions which do not provide the polyclipping lib.
67-
option(Mapper_BUILD_CLIPPER "Build the Clipper package from source" OFF)
68+
# To improve developer experience, build clipper if it is not found
69+
set(Mapper_BUILD_CLIPPER "auto" CACHE STRING
70+
"Build the Clipper package from source, alternatives: ON, OFF"
71+
)
6872

6973
option(Mapper_USE_GDAL "Use the GDAL library" ON)
7074

@@ -138,10 +142,12 @@ elseif(ANDROID)
138142
set(MAPPER_DATA_DESTINATION "assets")
139143
set(MAPPER_ABOUT_DESTINATION "assets/doc")
140144
else() # LINUX and alike
141-
set(MAPPER_RUNTIME_DESTINATION "bin")
142-
set(MAPPER_LIBRARY_DESTINATION "lib/${Mapper_PACKAGE_NAME}")
143-
set(MAPPER_DATA_DESTINATION "share/${Mapper_PACKAGE_NAME}")
144-
set(MAPPER_ABOUT_DESTINATION "share/doc/${Mapper_PACKAGE_NAME}")
145+
include(GNUInstallDirs)
146+
set(MAPPER_RUNTIME_DESTINATION "${CMAKE_INSTALL_BINDIR}")
147+
set(MAPPER_LIBRARY_DESTINATION "${CMAKE_INSTALL_LIBDIR}/${Mapper_PACKAGE_NAME}")
148+
set(MAPPER_DATA_DESTINATION "${CMAKE_INSTALL_DATADIR}/${Mapper_PACKAGE_NAME}")
149+
string(REPLACE "/${PROJECT_NAME}" "/${Mapper_PACKAGE_NAME}"
150+
MAPPER_ABOUT_DESTINATION "${CMAKE_INSTALL_DOCDIR}")
145151
endif()
146152

147153
if(CMAKE_CROSSCOMPILING)
@@ -174,6 +180,19 @@ add_custom_target(Mapper_prerequisites
174180
)
175181
set(Mapper_prerequisites_FOUND TRUE)
176182

183+
if(Mapper_BUILD_CLIPPER STREQUAL "auto")
184+
find_package(Polyclipping 6.1.3 MODULE)
185+
if(NOT Polyclipping_FOUND)
186+
message(WARNING
187+
"System polyclipping is missing. Enabling embedded build.\n"
188+
"Set Mapper_BUILD_CLIPPER=OFF to disable embedded build."
189+
)
190+
set_property(CACHE Mapper_BUILD_CLIPPER PROPERTY VALUE "ON")
191+
else()
192+
set_property(CACHE Mapper_BUILD_CLIPPER PROPERTY VALUE "OFF")
193+
endif()
194+
set_property(CACHE Mapper_BUILD_CLIPPER PROPERTY TYPE "BOOL")
195+
endif()
177196
if(Mapper_BUILD_CLIPPER)
178197
add_subdirectory(3rd-party/clipper)
179198
add_feature_info(Mapper_BUILD_CLIPPER 1 "version: ${CLIPPER_VERSION}")
@@ -182,18 +201,20 @@ else()
182201
find_package(Polyclipping 6.1.3 MODULE REQUIRED)
183202
endif()
184203

185-
find_package(PROJ4 CONFIG QUIET)
204+
# We must not require a minimum version of PROJ via find_package
205+
# because PROJ config requires the major version to match exactly.
206+
find_package(PROJ4 REQUIRED)
186207
if(NOT TARGET PROJ4::proj)
187-
set(PROJ4_FOUND false)
188-
find_package(PROJ4 MODULE REQUIRED)
208+
include("${CMAKE_CURRENT_SOURCE_DIR}/cmake/FindPROJ.cmake")
189209
endif()
190-
if(NOT PROJ4_VERSION OR PROJ4_VERSION VERSION_LESS 6.1)
210+
if(NOT PROJ4_VERSION OR PROJ4_VERSION VERSION_LESS 4.9)
211+
message(FATAL_ERROR "At least PROJ 4.9 is required")
212+
elseif(PROJ4_VERSION VERSION_LESS 6.1)
191213
# New PROJ API missing or incomplete.
192214
# (proj_normalize_for_visualization() came in 6.1.)
193215
set_property(TARGET PROJ4::proj APPEND PROPERTY
194216
INTERFACE_COMPILE_DEFINITIONS ACCEPT_USE_OF_DEPRECATED_PROJ_API_H)
195-
endif()
196-
if(NOT PROJ4_VERSION OR PROJ4_VERSION VERSION_LESS 6.2.1)
217+
elseif(PROJ4_VERSION VERSION_LESS 6.2.1)
197218
# Datum Potsdam issue, https://github.com/OSGeo/PROJ/pull/1573
198219
set_property(TARGET PROJ4::proj APPEND PROPERTY
199220
INTERFACE_COMPILE_DEFINITIONS PROJ_ISSUE_1573)
@@ -218,11 +239,6 @@ if(big_endian)
218239
endif()
219240

220241

221-
if(UNIX AND NOT APPLE)
222-
# set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib/${Mapper_PACKAGE_NAME}/lib")
223-
set(CMAKE_INSTALL_RPATH "${MAPPER_LIBRARY_DESTINATION}/lib")
224-
endif()
225-
226242
add_definitions(-D_USE_MATH_DEFINES -DUNICODE)
227243

228244
if(Mapper_DEVELOPMENT_BUILD)
@@ -274,7 +290,6 @@ endif()
274290
if (Mapper_USE_GDAL)
275291
add_subdirectory("src/gdal")
276292
endif()
277-
add_subdirectory("src/libocad")
278293
if(NOT ANDROID)
279294
add_subdirectory("src/printsupport")
280295
endif()
@@ -304,6 +319,7 @@ set(ci
304319
ci/filter-stderr.sed
305320
ci/publish.yml
306321
ci/publish-coverage.yml
322+
ci/release-notes.yml
307323
ci/setup-common.yml
308324
ci/setup-macos.yml
309325
ci/setup-msys2.yml

INSTALL.md

+33
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,39 @@ make
9595
```
9696

9797

98+
## Compiling for Windows (without OpenOrienteering superbuild)
99+
100+
A development environment on 64-bit Windows can be set up and maintained easily
101+
with the MSYS2 distribution. It provides up-to-date Windows packages of bash,
102+
gcc, mingw-w64, CMake, Ninja, Qt, PROJ, GDAL and Doxygen.
103+
104+
First of all, you need to install (and update) MSYS2, https://www.msys2.org/.
105+
The next step is to install all dependencies used by Mapper at build time
106+
and at run time. This will download more than 1.3 GB and take more than 9 GB
107+
of disk spaced after installation. In an msys2 terminal window, type:
108+
109+
```
110+
pacman -S git mingw-w64-x86_64-qt-creator mingw-w64-x86_64-proj mingw-w64-x86_64-gdal mingw-w64-x86_64-ninja mingw-w64-x86_64-cmake mingw-w64-x86_64-doxygen mingw-w64-x86_64-gdb
111+
```
112+
113+
For development you will start with an mingw64 terminal. Clone the
114+
OpenOrienteering Mapper repository (or use a source archive), as
115+
written above.
116+
117+
```
118+
git clone https://github.com/OpenOrienteering/mapper.git
119+
```
120+
121+
Run Qt Creator:
122+
123+
```
124+
qtcreator.exe &
125+
```
126+
127+
Adjust the Qt Kit settings and set the CMake generator to Ninja.
128+
Then open CMakeList.txt from the source directory.
129+
130+
98131
## Compiling with OpenOrienteering superbuild
99132

100133
The OpenOrienteering superbuild project

ci/filter-stderr.sed

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Cf. https://github.com/Microsoft/azure-pipelines-tasks/blob/master/docs/authoring/commands.md
22
/:.*[0-9]: [Ww]arning:/ {
3-
/libocad/ b
43
s,^\([a-zA-Z]:\)?/.*/1/s/,,
54
s,^\([a-zA-Z]:\)?/.*/build/,,
65
s,^,##vso[task.LogIssue type=warning;],

ci/openorienteering-mapper-ci.cmake

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ superbuild_package(
122122
"${CMAKE_COMMAND}" --build . --target package$<IF:$<STREQUAL:@CMAKE_GENERATOR@,Ninja>,,/fast>
123123
$<$<NOT:$<BOOL:@CMAKE_CROSSCOMPILING@>>:
124124
TEST_COMMAND
125+
"${CMAKE_COMMAND}" -E env "LD_LIBRARY_PATH=${CMAKE_STAGING_PREFIX}/lib"
125126
"${CMAKE_CTEST_COMMAND}" -T Test --no-compress-output
126127
$<$<BOOL:@Mapper_CI_ENABLE_COVERAGE@>:
127128
--exclude-regex symbol_set_t

ci/setup-common.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of OpenOrienteering.
22

3-
# Copyright 2019 Kai Pastor
3+
# Copyright 2019-2021 Kai Pastor
44
#
55
# Redistribution and use is allowed according to the terms of the BSD license:
66
#
@@ -51,6 +51,8 @@ steps:
5151
if [ -z "${APP_ID_SUFFIX}" -a -n "${VERSION_DISPLAY}" ] ; then
5252
echo "##vso[task.setVariable variable=APP_ID_SUFFIX].${BUILD_SOURCEBRANCHNAME}"
5353
fi
54+
# Fix Superbuild sdk_host quirk
55+
echo "##vso[task.setVariable variable=ANDROID_NDK_ROOT]"
5456
env | sort
5557
displayName: 'Update environment'
5658

code-check-wrapper.sh

+8
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ PATTERN=
4949
for I in \
5050
action_grid_bar.cpp \
5151
boolean_tool.cpp \
52+
color_wheel_widget.cpp \
5253
combined_symbol.cpp \
5354
configure_grid_dialog.cpp \
55+
course_file_format.cpp \
5456
crs_param_widgets.cpp \
5557
crs_template.cpp \
5658
crs_template_implementation.cpp \
@@ -63,13 +65,17 @@ for I in \
6365
georeferencing_dialog.cpp \
6466
georeferencing_t.cpp \
6567
icon_engine \
68+
iof_course_export \
6669
key_button_bar.cpp \
70+
key_value_container \
71+
kml_course_export \
6772
line_symbol.cpp \
6873
main.cpp \
6974
/map.cpp \
7075
map_coord.cpp \
7176
map_editor.cpp \
7277
map_find_feature.cpp \
78+
map_printer \
7379
map_widget.cpp \
7480
mapper_proxystyle.cpp \
7581
/object.cpp \
@@ -85,6 +91,8 @@ for I in \
8591
renderable_implementation.cpp \
8692
rotate_map_dialog.cpp \
8793
settings_dialog.cpp \
94+
simple_course_dialog.cpp \
95+
simple_course_export.cpp \
8896
stretch_map_dialog.cpp \
8997
style_t.cpp \
9098
/symbol.cpp \

codespell.sh

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ while read WORD; do SKIP_LIST="${SKIP_LIST:+$SKIP_LIST,}$WORD"; done \
77
3rd-party/cove/potrace
88
packaging/linux/Mapper.desktop
99
src/gdal/mapper-osmconf.ini
10-
src/libocad
1110
src/printsupport/qt-5.5.1
1211
src/printsupport/qt-5.12.4
1312
END_SKIP_LIST

0 commit comments

Comments
 (0)