Compare commits
6 Commits
topics/rem
...
version/20
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
414402268b | ||
|
|
8413bbac76 | ||
|
|
6c7fdbc0c6 | ||
|
|
ffdd4f062f | ||
|
|
bf5ec63ac3 | ||
|
|
83abaeeee2 |
8
.gitmodules
vendored
8
.gitmodules
vendored
@@ -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
2
fgdata
Submodule fgdata updated: 406ae11c3c...b7ac11267c
Submodule flightgear updated: b64f04a7d8...7d5503d971
2
getstart
2
getstart
Submodule getstart updated: 73c4f1c2e9...a616b29f50
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
2
simgear
2
simgear
Submodule simgear updated: 94a1156a6b...9a8c10cb0b
Reference in New Issue
Block a user