Skip to content

Commit

Permalink
Update premake and core
Browse files Browse the repository at this point in the history
  • Loading branch information
gorlak committed Nov 13, 2018
1 parent c7bb2f8 commit e84c477
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Dependencies/premake
Submodule premake updated 335 files
10 changes: 2 additions & 8 deletions Dependencies/premake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,7 @@ Helium.DoBasicWorkspaceSettings = function()
symbols "On"
optimize "Speed"
editandcontinue "Off"
flags
{
"NoFramePointer",
}
omitframepointer "On"

configuration "Release"
defines
Expand All @@ -216,10 +213,7 @@ Helium.DoBasicWorkspaceSettings = function()
symbols "On"
optimize "Speed"
editandcontinue "Off"
flags
{
"NoFramePointer",
}
omitframepointer "On"

configuration "windows"
buildoptions
Expand Down
5 changes: 0 additions & 5 deletions Dependencies/premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ require( thisFileLocation .. '/premake-wx' )
function CheckEnvironment()

print("\nChecking Environment...\n")

if _PREMAKE_VERSION < Helium.RequiredPremakeVersion then
print( "You must be running at least Premake " .. Helium.RequiredPremakeVersion .. "." )
os.exit( 1 )
end

if os.host() == "windows" then

Expand Down
14 changes: 4 additions & 10 deletions make-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,27 @@

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$DIR/premake.sh gmake
if [ "$?" -ne "0" ]; then
echo "premake.sh failed!"
exit 1
fi

pushd Build

make $@ config=debug_x64
make $@ config=debug
if [ "$?" -ne "0" ]; then
echo "Debug failed!"
exit 1
fi

make $@ config=intermediate_x64
make $@ config=intermediate
if [ "$?" -ne "0" ]; then
echo "Intermediate failed!"
exit 1
fi

make $@ config=profile_x64
make $@ config=profile
if [ "$?" -ne "0" ]; then
echo "Profile failed!"
exit 1
fi

make $@ config=release_x64
make $@ config=release
if [ "$?" -ne "0" ]; then
echo "Release failed!"
exit 1
Expand Down

0 comments on commit e84c477

Please sign in to comment.