forked from pypilot/pypilot_pi
-
Notifications
You must be signed in to change notification settings - Fork 6
/
CMakeLists.txt
292 lines (224 loc) · 10.1 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
##---------------------------------------------------------------------------
## Author: Sean d'Epagnier
##***************************************************************************
## * 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.304.0 20/09/2024 DD/MM/YYYY
# 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)
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 "pypilot")
set(COMMON_NAME "pypilot") # Search "getcommonname"in <plugin_pi>.cpp
set(TITLE_NAME "PYPILOT")
set(PACKAGE_CONTACT "Sean D'Epagnier")
set(PACKAGE "pypilot")
set(SHORT_DESCRIPTION "pypilot PlugIn for OpenCPN")
set(LONG_DESCRIPTION
"Control the free software autopilot pypilot. See http://pypilot.org for more details. \\nThe plugin connects to pypilot directly implementing a control interface to configure, \\ncalibrate and command pypilot from opencpn. For more control and tuning route-following \\nlogic, consider the autopilot route plugin."
)
set(VERSION_MAJOR "0")
set(VERSION_MINOR "53")
set(VERSION_PATCH "0")
set(VERSION_TWEAK "0")
set(VERSION_DATE "10/12/2024")#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 "${GIT_REPOSITORY_NAME}")
#set(CLOUDSMITH_BASE_REPOSITORY "opencpn-plugins") #Ricks's customization
set (CLOUDSMITH_BASE_REPOSITORY "pypilot") #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-manuals.github.io/main/pypilot/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)
# 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")
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
##========================================================
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)
## --Below needed for 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 above - Add your project SET(SRCS and SET(HDRS etc.-------##
SET(SRCS
src/pypilot_pi.cpp
src/pypilot_client.cpp
src/pypilotDialog.cpp
src/GainsDialog.cpp
src/ConfigurationDialog.cpp
src/StatisticsDialog.cpp
src/SettingsDialog.cpp
src/pypilotClientDialog.cpp
src/pypilotUI.cpp
src/icons.cpp
)
SET(HDRS
src/CalibrationPlot.h
src/ConfigurationDialog.h
src/GainsDialog.h
src/icons.h
src/msvcdefs.h
src/pypilot_client.h
src/pypilot_pi.h
src/pypilotClientDialog.h
src/pypilotDialog.h
src/pypilotUI.h
src/StatisticsDialog.h
src/SettingsDialog.h
src/wxWTranslateCatalog.h
src/CalibrationDialog.cpp
src/CalibrationPlot.cpp
)
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 --------##
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.
##==============================================================
set( servdisc_SRC
libs/wxservdisc/src/1035.c
libs/wxservdisc/src/mdnsd.c
libs/wxservdisc/src/wxServDisc.cpp
)
target_sources(${PACKAGE_NAME} PUBLIC ${SRC} ${servdisc_SRC})
include_directories( ${PROJECT_SOURCE_DIR}/libs/wxservdisc/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-17)
target_link_libraries(${PACKAGE_NAME} ocpn::api)
add_subdirectory(opencpn-libs/tinyxml)
target_link_libraries(${PACKAGE_NAME} ocpn::tinyxml)
add_subdirectory(opencpn-libs/jsoncpp)
target_link_libraries(${PACKAGE_NAME} ocpn::jsoncpp)
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 ---------------##
##
# 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 ()