Compare commits

...

6 Commits

Author SHA1 Message Date
Torsten Dreyer
414402268b New version: 2018.3.3 2019-07-28 22:45:07 +02:00
James Turner
8413bbac76 Update for 2018.3.2 2019-01-06 16:16:10 +00:00
James Turner
6c7fdbc0c6 Remove -j option to Cmake --build 2018-11-26 13:54:12 +00:00
James Turner
ffdd4f062f Use Cmake -build to compile 2018-10-23 12:10:01 +01:00
James Turner
bf5ec63ac3 Include the OSG .DDS loader plugin in Mac builds 2018-10-05 13:14:27 +01:00
Torsten Dreyer
83abaeeee2 set correct release-branch for submodules 2018-09-21 17:22:27 +02:00
8 changed files with 16 additions and 16 deletions

8
.gitmodules vendored
View File

@@ -1,11 +1,11 @@
[submodule "simgear"]
path = simgear
url = ../simgear
branch = next
branch = release/2018.3
[submodule "flightgear"]
path = flightgear
url = ../flightgear
branch = next
branch = release/2018.3
[submodule "fgrun"]
path = fgrun
url = ../fgrun
@@ -13,7 +13,7 @@
[submodule "fgdata"]
path = fgdata
url = ../fgdata
branch = next
branch = release/2018.3
[submodule "windows-3rd-party"]
path = windows-3rd-party
url = ../windows-3rd-party
@@ -21,4 +21,4 @@
[submodule "getstart"]
path = getstart
url = ../getstart
branch = next
branch = release/2018.3

2
fgdata

Submodule fgdata updated: 406ae11c3c...b7ac11267c

View File

@@ -23,16 +23,15 @@ echo "Starting on SimGear"
pushd sgBuild
cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo ../simgear
# compile
make
# compile (with out-j for now, it's hitting process limits)
cmake --build .
if [ $? -ne '0' ]; then
echo "make simgear failed"
exit 1
fi
make install
cmake --build . --target install
popd
@@ -48,14 +47,15 @@ fi
cmake -DFG_BUILD_TYPE=$FGBUILDTYPE -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo ../flightgear
make
# compile (with out-j for now, it's hitting process limits)
cmake --build .
if [ $? -ne '0' ]; then
echo "make flightgear failed"
exit 1
fi
make install
cmake --build . --target install
popd

View File

@@ -5,7 +5,7 @@ require 'fileutils' #I know, no underscore is not ruby-like
include FileUtils
$osgLibs = ['osgFX', 'osgParticle', 'osg', 'osgGA', 'osgText', 'osgUtil', 'osgSim', 'osgViewer', 'osgDB']
$osgPlugins = ['ac', 'osg', 'freetype', 'imageio', 'rgb', 'txf', 'mdl', '3ds']
$osgPlugins = ['ac', 'osg', 'freetype', 'imageio', 'rgb', 'txf', 'mdl', '3ds', 'dds']
# from http://drawingablank.me/blog/ruby-boolean-typecasting.html
class String

Submodule simgear updated: 94a1156a6b...9a8c10cb0b

View File

@@ -1 +1 @@
2018.3.1
2018.3.2