-
Notifications
You must be signed in to change notification settings - Fork 6
/
CMakeLists.txt
256 lines (189 loc) · 9.6 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
##---------------------------------------------------------------------------
## Author: Pavel Kalin Copyright: License: wxWidgets License
##***************************************************************************
## * Copyright (C) 2010 by Sean d'Epagnier *
## * License: GPLv3+
## * 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 2 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, write to the *
## * xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, *
## * xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx *
#-----------------------------------------------------------------------------
# Frontend2 Author: Jon Gough
# Testplugin(TP) v1.0.260 07/10/2023 DD/MM/YYYY format
# buildCI:yes useODAPI:no validateJSON:no
# ---------------------------------------------------------------------------
## -- When changing this file do NOT change the order of the sections. -- ##
## -- Make changes only between the section blocks identified -- ##
## -- The whole configuration process relies on this sequence for success.-- ##
##
## -- Modify section below to include all the details for your plugin. -- ##
set(CMLOC "CMakeLists: ")
# define minimum cmake version
cmake_minimum_required(VERSION 3.5.1)
if(COMMAND cmake_policy)
if(POLICY CMP0043)
cmake_policy(SET CMP0043 NEW)
endif(POLICY CMP0043)
cmake_policy(SET CMP0048 NEW)
# Need cmake 3.13 to implement this, but raspbian builds are at 3.7.2 and bionic at 3.10 and xenial builds at 3.5.1
# cmake_policy(SET CMP0076 NEW)
if(POLICY CMP0077)
cmake_policy(SET CMP0077 NEW)
endif(POLICY CMP0077)
endif(COMMAND cmake_policy)
# define plugin name, owner and versions
set(VERBOSE_NAME "deviation")
set(COMMON_NAME "Deviation") # Search "getcommonname"in <plugin_pi>.cpp
set(TITLE_NAME "DEVIATION")
set(PACKAGE_CONTACT "Dirk Smits")
set(PACKAGE "deviation")
set(SHORT_DESCRIPTION "Compass deviation PlugIn for OpenCPN")
set(LONG_DESCRIPTION "Set deviation table to correct incoming nmea compass course to true course sentences, also activate wmm.")
set(VERSION_MAJOR "0")
set(VERSION_MINOR "1")
set(VERSION_PATCH "50")
set(VERSION_TWEAK "0")
set(VERSION_DATE "10/10/2023")#DD/MM/YYYY format
set(OCPN_MIN_VERSION "ov58")
set(OCPN_API_VERSION_MAJOR "1")
set(OCPN_API_VERSION_MINOR "17")
set(TP_COMMENT " * Release using CI")
set(PARENT "opencpn")
#Use to set up a local webserver with git installed.
#Default is github.com. Now set in pluginconfigure.cmake
#set(GIT_REPOSITORY_SERVER "github.com")
## Specifies Cloudsmith upload repository suffix for each catalog
set(PROD "prod") #Standard Repos
set(BETA "beta") #Standard Repos
set(ALPHA "alpha") #Standard Repos
# Set if Cloudsmith Base Repository name does not match your Git Repository name.
#set(CLOUDSMITH_BASE_REPOSITORY "testplugin_pi")
set(CLOUDSMITH_BASE_REPOSITORY "deviation") #without the pi
# Set the following to use OpenCPN cloudsmith repositories instead of own repositories
set(CLOUDSMITH_USER "opencpn")
# set(CLOUDSMITH_USER "rick-gleason")
set(XML_INFO_URL "https://opencpn-manuals.github.io/main/deviation/index.html")
set(XML_SUMMARY ${SHORT_DESCRIPTION})
set(XML_DESCRIPTION ${LONG_DESCRIPTION})
## ----- Modify section above to include all the details for your plugin ------- ##
## ----- Modify section below if there are special requirements for the plugin --##
option(PLUGIN_USE_SVG "Use SVG graphics" ON)
set(CMAKE_CXX_STANDARD 11)
set(USE_LOCAL_GLU TRUE) # Use local GLU library opencpn-libs/glu
set(OpenGL_GL_PREFERENCE "LEGACY") #not operational
option(USE_GL "Enable OpenGL support" OFF)
message(STATUS "${CMLOC}USE_GL: ${USE_GL}")
if("${CMAKE_BUILD_TYPE}" STREQUAL "")
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build" FORCE)
endif("${CMAKE_BUILD_TYPE}" STREQUAL "")
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "" "Debug" "Release" "RelWithDebInfo" "MinSizeRel")
message(STATUS "${CMLOC}Build type: ${CMAKE_BUILD_TYPE}")
## ----- Statements below used to setup standard variables required by the CMAKE process -- Do not remove - ##
project(${PACKAGE})
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
##========================================================
include("PluginSetup")
##========================================================
## ----- Above sets up standard variables required by CMAKE - Do not remove -----##
## ----- Modify section below if there are special requirements for the plugin --##
set(CMAKE_VERBOSE_MAKEFILE "Activate verbose mode for make files" ON)
option(Plugin_CXX11 "Use c++11" OFF)
## ----- Modify section above if there are special requirements for the plugin --##
## ----- Do not change next section - needed to configure build process ---------##
##===========================================================
include("PluginConfigure")
##===========================================================
## ----- Do not change section above - needed to configure build process --------##
## ----- Change below to match project requirements for source, headers, etc. ---##
add_definitions(-DUSE_S57)
## ---- Section Below - Add your project SET(SRCS and SET(HDRS etc..
SET(SRCS
src/deviation_pi.cpp
src/spa.cpp
src/SharedStuff.cpp
src/readwritexml.cpp
src/preferencedlg.cpp
src/compass.cpp
src/printing.cpp
src/bearingdlg.cpp
src/icons.cpp
)
SET (HDRS
src/deviation_pi.h
src/spa.h
src/SharedStuff.h
src/readwritexml.h
src/preferencedlg.h
src/compass.h
src/printing.h
src/bearingdlg.h
src/icons.h
)
add_definitions(-DPLUGIN_USE_SVG)
## ----- Section above - Add your project SET(SRCS and SET(HDRS etc.-------##
## ----- If using JSON validation in plugin section below is needed --------##
# Do not need Json Schema Validation
## ----- If using JSON validation in plugin section above is needed --------##
##=============================================================
## Change as required to collect all the set( headers and SRCS
## This add_library can be used in conditionals below.
##=============================================================
SET(SRC ${SRCS} ${HDRS} )
##=============================================================
## Modify/configure 'Include' Directories below for the Plugin
##=============================================================
## Change target_sources to match your project needs.
##==============================================================
target_sources(${PACKAGE_NAME} PUBLIC ${SRC} )
##==============================================================
if(NOT OCPN_FLATPAK_CONFIG)
# Build environment not available when flatpak is being configured
# so following statements will not work
message(STATUS "${CMLOC}Adding target link libraries to ${PACKAGE_NAME}")
# add_subdirectory(opencpn-libs/WindowsHeaders)
# target_link_libraries(${PACKAGE_NAME} windows::headers)
add_subdirectory(opencpn-libs/api-17)
target_link_libraries(${PACKAGE_NAME} ocpn::api)
add_subdirectory(opencpn-libs/tinyxml)
target_link_libraries(${PACKAGE_NAME} ocpn::tinyxml)
add_subdirectory(opencpn-libs/wxJSON)
target_link_libraries(${PACKAGE_NAME} ocpn::wxjson)
add_subdirectory(opencpn-libs/plugingl)
target_link_libraries(${PACKAGE_NAME} ocpn::plugingl)
add_subdirectory(opencpn-libs/nmea0183)
target_link_libraries(${PACKAGE_NAME} ocpn::nmea0183)
# add_subdirectory(opencpn-libs/glu)
# target_link_libraries(${PACKAGE_NAME} ocpn::glu_static)
endif(NOT OCPN_FLATPAK_CONFIG)
add_definitions(-DTIXML_USE_STL)
##
## ----- If using JSON validation section below is needed ---------------##
##
# Do not need Json Schema Validation
##------- Change below to match project requirements --------------------##
# Needed for android builds
if(QT_ANDROID)
include_directories(BEFORE ${qt_android_include})
endif(QT_ANDROID)
## Needed for all builds Do not change - needed to build app -------------##
##===============================================================
include("PluginInstall")
include("PluginLocalization")
include("PluginPackage")
##================================================================
## ----- Do not change section above - needed to configure build process --##
message(STATUS "${CMLOC}include directories: ")
get_property(dirs DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY INCLUDE_DIRECTORIES)
foreach(dir ${dirs})
message(STATUS "${CMLOC}dir='${dir}'")
endforeach()