-
Notifications
You must be signed in to change notification settings - Fork 17
/
CMakeLists.txt
273 lines (206 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
##---------------------------------------------------------------------------
## 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.286.2 24/12/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)
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)
# define plugin name, owner and versions
set(VERBOSE_NAME Climatology)
set(COMMON_NAME "Climatology") # Search "getcommonname"in climatology_pi.
set(TITLE_NAME "climatology")
set(PACKAGE_CONTACT "Sean D'Epagnier")
set(PACKAGE "climatology")
set(SHORT_DESCRIPTION "Climatology PlugIn: 32 years of monthly NOAA Data")
set(LONG_DESCRIPTION "Climatology provides overlay capabilities for historic weather data. Supported Climatology types include: - Average wind directions and speed- Percentage of gale and calm conditions - Sea Surface Currents - Average swell and sea state (not yet implemented) - Precipitation, Humidity, Cloud Cover, and Lightning Strikes - Monthly average Sea Level pressure and Sea Temperature, Air Temperature - Tropical Cyclone tracks")
set(VERSION_MAJOR "1")
set(VERSION_MINOR "6")
set(VERSION_PATCH "30")
set(VERSION_TWEAK "5")
set(VERSION_DATE "24/12/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 "${GIT_REPOSITORY_NAME}")
#set(CLOUDSMITH_BASE_REPOSITORY "opencpn-plugins") #Ricks's customization
set(CLOUDSMITH_BASE_REPOSITORY "climatology") #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.org/OpenCPN/plugins/climatology.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)
# 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/ClimatologyOverlayFactory.cpp
src/climatology_pi.cpp
src/ClimatologyUI.cpp
src/ClimatologyDialog.cpp
src/ClimatologyConfigDialog.cpp
src/IsoBarMap.cpp
src/icons.cpp
src/zuFile.cpp
)
SET(HDRS
include/climatology_pi.h
include/ClimatologyConfigDialog.h
include/ClimatologyDialog.h
include/ClimatologyOverlayFactory.h
include/ClimatologyUI.h
include/gldefs.h
include/icons.h
include/IsoBarMap.h
include/linmath.h
include/zuFile.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
##=============================================================
#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()
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/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)
IF(NOT UNIX)
add_subdirectory(opencpn-libs/bzip2)
target_link_libraries(${PACKAGE_NAME} ocpn::bzip2)
ENDIF(NOT UNIX)
IF(WIN32)
IF(MSVC)
SET(OPENCPN_IMPORT_LIB "../../${CMAKE_CFG_INTDIR}/${PARENT}")
add_subdirectory(opencpn-libs/zlib)
target_link_libraries(${PACKAGE_NAME} ocpn::zlib)
ELSE()
#MINGW
TARGET_LINK_LIBRARIES(${PACKAGE_NAME} "-lz")
ENDIF()
ENDIF(WIN32)
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()