-
Notifications
You must be signed in to change notification settings - Fork 9
/
CMakeLists.txt
333 lines (261 loc) · 10.9 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
# ---------------------------------------------------------------------------
# Frontend2 Author: jongough aka. Jon Gough Copyright: License: wxWidgets
# License
# ---------------------------------------------------------------------------
# - Copyright (C) by Jon Gough *
# - 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.311.0 24/10/2024 DD/MM/YYYY
# format buildCI:yes useODAPI:yes validateJSON:yes
# ---------------------------------------------------------------------------
# -- 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)
if (POLICY CMP0076)
cmake_policy(SET CMP0076 NEW)
endif (POLICY CMP0076)
if (POLICY CMP0077)
cmake_policy(SET CMP0077 NEW)
endif (POLICY CMP0077)
endif (COMMAND cmake_policy)
# set for vscode/vscodium
set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
# define plugin name, owner and versions
set(VERBOSE_NAME "Testplugin")
set(COMMON_NAME "Testplugin")
set(TITLE_NAME "testplugin")
set(PACKAGE_CONTACT "Jon Gough")
set(PACKAGE "testplugin")
set(SHORT_DESCRIPTION
"Plugin to test examples of the ODAPI and JSON interface for ODRAW"
)
set(LONG_DESCRIPTION
"testplugin Plugin is used to test out the ODraw API and demonstrate how to use it successfully from another plugin"
)
set(VERSION_MAJOR "1")
set(VERSION_MINOR "0")
set(VERSION_PATCH "313")
set(VERSION_TWEAK "0")
set(VERSION_DATE "25/10/2024") # DD/MM/YYYY format
set(OCPN_MIN_VERSION "ov58")
set(OCPN_API_VERSION_MAJOR "1")
set(OCPN_API_VERSION_MINOR "18")
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 "${GIT_REPOSITORY_NAME}")
# set(CLOUDSMITH_BASE_REPOSITORY "opencpn-plugins") #Ricks's customization
set(CLOUDSMITH_BASE_REPOSITORY "testplugin") # without the pi
# Set the following to use OpenCPN cloudsmith repositories instead of own
# repositories
set(CLOUDSMITH_USER "opencpn")
# set(CLOUDSMITH_USER "jon-gough")
set(XML_INFO_URL
"https://opencpn.org/wiki/dokuwiki/doku.php?id=opencpn:opencpn_user_manual:plugins:safety:odraw1.6_pi"
)
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)
# Use local version of GLU library requires libs/glu directory
set(USE_LOCAL_GLU FALSE)
# Prefer libGL.so to libOpenGL.so, see CMP0072
set(OpenGL_GL_PREFERENCE "LEGACY") # not operational
option(USE_GL "Enable OpenGL support" ON)
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/tpControlDialogDef.cpp src/tpControlDialogImpl.cpp src/tpicons.cpp
src/tpJSON.cpp src/testplugin_pi.cpp src/tpUtils.cpp
)
set(HDRS
include/testplugin_pi.h
include/tpicons.h
include/tpControlDialogDef.h
include/tpControlDialogImpl.h
include/tpIconCombo.h
include/tpJSON.h
include/tpUtils.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
if (APPLE)
option(PI_JSON_SCHEMA_VALIDATOR "Use JSON Schema validator" OFF)
else (APPLE)
option(PI_JSON_SCHEMA_VALIDATOR "Use JSON Schema validator" ON)
endif (APPLE)
set(PI_JSON_SCHEMA_VALIDATOR ON)
if (PI_JSON_SCHEMA_VALIDATOR)
message(
STATUS
"${CMLOC}Using JSON Schema validation - warning this changes the 'flavour' of the executable and it may not be compatible with OpenCPN"
)
add_definitions(-DPI_JSON_SCHEMA_VALIDATOR)
message(STATUS "${CMLOC}Adding JSON Schema validation")
add_subdirectory(opencpn-libs/json-schema-validator)
target_link_libraries(${PACKAGE_NAME} ocpn::json-schema-validator)
else (PI_JSON_SCHEMA_VALIDATOR)
message(
STATUS
"${CMLOC}Not using JSON Schema validation - warning invalid JSON 'may' cause unexpected crashes"
)
endif (PI_JSON_SCHEMA_VALIDATOR)
# ----- If using JSON validation in plugin section above is needed
if (QT_ANDROID)
endif (QT_ANDROID)
# =============================================================
# 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
# =============================================================
include_directories(BEFORE ${PROJECT_SOURCE_DIR}/include)
# 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}")
if (WIN32)
add_subdirectory(opencpn-libs/WindowsHeaders)
target_link_libraries(${PACKAGE_NAME} windows::headers)
endif (WIN32)
add_subdirectory(opencpn-libs/api-18)
target_link_libraries(${PACKAGE_NAME} ocpn::api)
add_subdirectory(opencpn-libs/tinyxml)
target_link_libraries(${PACKAGE_NAME} ocpn::tinyxml)
add_subdirectory(opencpn-libs/odapi)
target_link_libraries(${PACKAGE_NAME} ocpn::odapi)
add_subdirectory(opencpn-libs/jsonlib)
target_link_libraries(${PACKAGE_NAME} ocpn::jsonlib)
add_subdirectory(opencpn-libs/wxJSON)
target_link_libraries(${PACKAGE_NAME} ocpn::wxjson)
add_subdirectory(opencpn-libs/plugin_dc)
target_link_libraries(${PACKAGE_NAME} ocpn::plugin-dc)
endif (NOT OCPN_FLATPAK_CONFIG)
add_definitions(-DTIXML_USE_STL)
#
# ----- If using JSON validation section below is needed
#
if (UNIX
AND NOT APPLE
AND NOT QT_ANDRIOD
)
if (PI_JSON_SCHEMA_VALIDATOR)
# Change OS/ABI to be UNIX - System V to make it run with OCPN
set(lib_name lib${PACKAGE_NAME}.so)
message(STATUS "${CMLOC}lib-name: ${lib_name}")
find_file(elfedit elfedit)
if (NOT (${elfedit} STREQUAL "elfedit-NOTFOUND"))
message(STATUS "${CMLOC}Will ensure OS/ABI is set to 0 to match OCPN")
add_custom_command(
TARGET ${PACKAGE_NAME}
POST_BUILD
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
DEPENDS ${PACKAGE_NAME}
COMMENT " Running post build action on ${lib_name}."
COMMAND
sh -c
'elfedit --input-osabi=Linux --output-osabi=none ${lib_name} || (echo 0) '
)
else (NOT (${elfedit} STREQUAL "elfedit-NOTFOUND"))
message(
STATUS
"${CMLOC}Cannot correct OS/ABI to match OCPN if it is generated incorrectly. Package binutils needed"
)
endif (NOT (${elfedit} STREQUAL "elfedit-NOTFOUND"))
endif (PI_JSON_SCHEMA_VALIDATOR)
endif (
UNIX
AND NOT APPLE
AND NOT QT_ANDRIOD
)
# ------- 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 ()