v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
27
scripts/gitlab-ci/macos/Starbound.app/Contents/Info.plist
Normal file
27
scripts/gitlab-ci/macos/Starbound.app/Contents/Info.plist
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>Starbound</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>starbound</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.chucklefish</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>starbound</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>starbound</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>LSEnvironment</key>
|
||||
<dict>
|
||||
<key>MinimumSystemVersion</key>
|
||||
<string>10.9.0</string>
|
||||
</dict>
|
||||
<key>SDL_FILESYSTEM_BASE_DIR_TYPE</key>
|
||||
<string>parent</string>
|
||||
</dict>
|
||||
</plist>
|
Binary file not shown.
25
scripts/gitlab-ci/macos/build.sh
Normal file
25
scripts/gitlab-ci/macos/build.sh
Normal file
|
@ -0,0 +1,25 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
mkdir -p build
|
||||
cd build
|
||||
|
||||
rm -f CMakeCache.txt
|
||||
|
||||
cmake \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DSTAR_ENABLE_STATIC_LIBGCC_LIBSTDCXX=ON \
|
||||
-DSTAR_USE_JEMALLOC=OFF \
|
||||
-DSTAR_ENABLE_STEAM_INTEGRATION=ON \
|
||||
-DSTAR_ENABLE_DISCORD_INTEGRATION=ON \
|
||||
-DCMAKE_INCLUDE_PATH=../lib/osx/include \
|
||||
-DCMAKE_LIBRARY_PATH=../lib/osx \
|
||||
-DCMAKE_OSX_SYSROOT=/ \
|
||||
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.9 \
|
||||
../source
|
||||
|
||||
make -j2
|
||||
|
||||
cd ..
|
||||
|
||||
mv dist macos_binaries
|
||||
cp lib/osx/*.dylib macos_binaries/
|
11
scripts/gitlab-ci/macos/run-server.sh
Normal file
11
scripts/gitlab-ci/macos/run-server.sh
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
cd "`dirname \"$0\"`"
|
||||
|
||||
osascript <<END
|
||||
|
||||
tell application "Terminal"
|
||||
do script "cd \"`pwd`\";./starbound_server $@;exit"
|
||||
end tell
|
||||
|
||||
END
|
8
scripts/gitlab-ci/macos/sbinit.config
Normal file
8
scripts/gitlab-ci/macos/sbinit.config
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"assetDirectories" : [
|
||||
"../assets/",
|
||||
"../mods/"
|
||||
],
|
||||
|
||||
"storageDirectory" : "../storage/"
|
||||
}
|
9
scripts/gitlab-ci/macos/test.sh
Normal file
9
scripts/gitlab-ci/macos/test.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh -e
|
||||
|
||||
cd macos_binaries
|
||||
|
||||
cp ../scripts/osx/sbinit.config .
|
||||
|
||||
./core_tests
|
||||
./game_tests
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue