-
Notifications
You must be signed in to change notification settings - Fork 36
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 #286 from rgleason/master
1.14.1 + TP 1.0.238
- Loading branch information
Showing
78 changed files
with
50,791 additions
and
21,582 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
build/ | ||
buildwin/ | ||
.directory | ||
./build* | ||
po/POTFILES.in.test | ||
temp | ||
tmp | ||
master.zip |
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,4 +1,68 @@ | ||
REM FE2 Testplugin | ||
|
||
REM -------------------------------------- | ||
REM For Opencpn 5.8 and wxWidgets-3.2.2 using Visual Studio 15 2017 | ||
REM -------------------------------------- | ||
REM Used for local builds and testing. | ||
REM Use bash prompt because of the cloudsmith-upload.sh at the end. | ||
REM Set local environment using wxWidgets-3.2.2 | ||
set "wxDIR=%WXWIN%" | ||
set "wxWidgets_ROOT_DIR=%WXWIN%" | ||
set "wxWidgets_LIB_DIR=%WXWIN%\lib\vc14x_dll" | ||
set "WXWIN=C:\Users\fcgle\source\wxWidgets-3.2.2" | ||
REM For Opencpn 5.8 and wxWidgets-3.2.2 | ||
cd build | ||
cmake -T v141_xp .. | ||
cmake --build . --target package --config release >output.txt | ||
cmake -T v143 -A Win32 -DOCPN_TARGET=MSVC .. | ||
cmake --build . --target package --config relwithdebinfo >output.txt | ||
bash ./cloudsmith-upload.sh | ||
|
||
REM -------------------------------------- | ||
REM For Opencpn 5.6.2 and wxWidgets-3.1.2 release | ||
REM -------------------------------------- | ||
REM Using built C:\Users\fcgle\source\wxWidgets-3.1.2 and local settings | ||
REM set "wxDIR=%WXWIN%" | ||
REM set "wxWidgets_ROOT_DIR=%WXWIN%" | ||
REM set "wxWidgets_LIB_DIR=%WXWIN%\lib\vc14x_dll" | ||
REM set "WXWIN=C:\Users\fcgle\source\wxWidgets-3.1.2" | ||
REM cd build | ||
REM cmake -T v141_xp -DOCPN_TARGET=MSVC .. | ||
REM cmake --build . --target package --config release >output.txt | ||
REM bash ./cloudsmith-upload.sh | ||
|
||
REM -------------------------------------- | ||
REM For Opencpn 5.8 and wxWidgets-3.2.2 using Visual Studio 15 2017 | ||
REM -------------------------------------- | ||
REM Using built C:\Users\fcgle\source\wxWidgets-3.2.2 and local settings | ||
REM set "wxDIR=%WXWIN%" | ||
REM set "wxWidgets_LIB_DIR=%WXWIN%\lib\vc14x_dll" | ||
REM set "WXWIN=C:\Users\fcgle\source\wxWidgets-3.2.2" | ||
REM cd build | ||
REM cmake -T v141_xp -G -DOCPN_TARGET=MSVC "Visual Studio 15 2017" | ||
REM -DCMAKE_BUILD_TYPE=RelWithDebInfo .. | ||
REM cmake --build . --target tarball --config RelWithDebInfo >output.txt | ||
REM bash ./cloudsmith-upload.sh | ||
|
||
REM -------------------------------------- | ||
REM For Opencpn 5.8.2 and wxWidgets-3.2.2 using Visual Studio 12 2022 | ||
REM TransmitterDAN full Build in repos2 which executes win_deps.bat | ||
REM -------------------------------------- | ||
REM .\buildwin\win_deps.bat | ||
REM cd build | ||
REM cmake -T v143 -A Win32 -DOCPN_TARGET=MSVC "Visual Studio 17 2022" ^ | ||
REM -DCMAKE_BUILD_TYPE=RelWithDebInfo .. | ||
REM cmake --build . --target tarball --config RelWithDebInfo >output.txt | ||
|
||
REM Setup for wxWidgets 3.2.2 | ||
REM wxWidgets_INCLUDE_DIRS %WXWIN%\include | ||
REM wxWidgets_LIB_DIR %WXWIN%\lib\vc_dll | ||
REM wxWidgets_LIBRARIES %WXWIN%\lib\vc_dll | ||
REM wxWidgets_ROOT_DIR %WXWIN% | ||
REM WXWIN C:\Users\fcgle\source\repos2\OpenCPN\cache\buildwxWidgets\ | ||
|
||
REM -------------------------------------- | ||
REM configdev58.bat by Rick for local builds. | ||
REM -------------------------------------- | ||
REM Can use "call configdev58.bat" in another batch file to set up local wxWidgets environment | ||
REM set "wxDIR=C:\Users\fcgle\source\repos2\OpenCPN\buildwin\..\cache\buildwxWidgets" | ||
REM set "wxWidgets_ROOT_DIR=C:\Users\fcgle\source\repos2\OpenCPN\buildwin\..\cache\buildwxWidgets" | ||
REM set "wxWidgets_LIB_DIR=C:\Users\fcgle\source\repos2\OpenCPN\buildwin\..\cache\buildwxWidgets\lib\vc_dll" |
Oops, something went wrong.