-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #438 from jongough/update_1.8
Update 1.8
- Loading branch information
Showing
11 changed files
with
55 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Run created upload script | ||
# | ||
# Run created cloudsmith upload script | ||
# | ||
|
||
CURRENT_DIR=$(pwd) | ||
bash $CURRENT_DIR/build/cloudsmith-upload.sh |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
The files in this directory are not executed but are transformed or used by the build process. | ||
|
||
version.h.in is updated to include the current settings from CMakeLists.txt and put in a location that | ||
is part of the include directory set. Source code that needs these settings just have to use: | ||
#include "version.h" | ||
at/near the top of the source code file. | ||
|
||
the wxWTranslateCatalog.h.in file is used to ensure that the plugins language files are accessed rather than | ||
OpenCPN language files. This allows for change of context of words to be applied correctly. Without this there | ||
can be confusion when a language uses a different word translation in different contexts. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
The *.cmake files in this directory provide resources to build the make environment. However, the contents of these | ||
files is mainly static, so this helps reduce the size and complexity of the main CMakeLists.txt file. | ||
|
||
The following files are manadatory for the cmake process to work: | ||
pluginConfigure.cmake | ||
PluginInstall.cmake | ||
PluginLocalization.cmake | ||
PluginPackage.cmake | ||
PluginSetup.cmake | ||
|
||
These file should only be changed with great care as they use generalised processes to handle the generation of the | ||
build environments. If you need to add functionality that you need for your plugin then add extra cmake files here | ||
for your purpose. It is strongly suggested that you do not change these files as if updates to the process are | ||
required it is much easier to do a file replace than identify what has changed. | ||
|
||
An example of an 'extra' cmake file can be seen with: | ||
FindTinyXML.cmake | ||
|
||
Extra files are added to the CMakeLists.txt file by using an include statement such as: | ||
include("cmake/FindTinyXML.cmake") | ||
|
||
Please be case sensitive as it may work on windows builds without this but Linux builds will not. |