Skip to content

Commit

Permalink
Building for all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackx2 committed Apr 10, 2024
1 parent 6c94d00 commit af05e1a
Show file tree
Hide file tree
Showing 12 changed files with 75 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
color 0a
cd ..
cd ../../..
@echo on
echo BUILDING GAME
haxelib run lime test html5 -debug
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
color 0a
cd ..
cd ../../..
@echo on
echo BUILDING GAME
haxelib run lime test html5 -release
Expand Down
10 changes: 10 additions & 0 deletions art/Building/linux/32bit/debug.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
color 0a
cd ../../../../
echo BUILDING GAME
haxelib run lime build Project.xml linux -32 -debug -D 32bits -D HXCPP_M32
echo.
echo done.
pause
pwd
explorer.exe export\32bit\linux\bin
10 changes: 10 additions & 0 deletions art/Building/linux/32bit/release.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
color 0a
cd ../../../../
echo BUILDING GAME
haxelib run lime build Project.xml linux -32 -release -D 32bits -D HXCPP_M32
echo.
echo done.
pause
pwd
explorer.exe export\32bit\linux\bin
10 changes: 10 additions & 0 deletions art/Building/linux/64bit/debug.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
color 0a
cd ../../../../
echo BUILDING GAME
haxelib run lime build Project.xml linux -debug
echo.
echo done.
pause
pwd
explorer.exe export\debug\linux\bin
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
color 0a
cd ..
cd ../../../../
echo BUILDING GAME
haxelib run lime build windows -release
echo.
Expand Down
10 changes: 10 additions & 0 deletions art/Building/macos/debug.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
color 0a
cd ../../..
echo BUILDING GAME
haxelib run lime build mac -debug
echo.
echo done.
pause
pwd
explorer.exe export\debug\macos\bin
10 changes: 10 additions & 0 deletions art/Building/macos/release.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
color 0a
cd ../../..
echo BUILDING GAME
haxelib run lime build mac -debug
echo.
echo done.
pause
pwd
explorer.exe export\release\macos\bin
10 changes: 10 additions & 0 deletions art/Building/windows/32bit/debug.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
color 0a
cd ../../../../
echo BUILDING GAME
haxelib run lime build windows -32 -debug -D 32bits -D HXCPP_M32
echo.
echo done.
pause
pwd
explorer.exe export\32bit\windows\bin
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
color 0a
cd ..
cd ../../../../
echo BUILDING GAME
haxelib run lime build windows -32 -release -D 32bits -D HXCPP_M32
echo.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off
color 0a
cd ..
cd ../../../../
echo BUILDING GAME
haxelib run lime build windows -debug
echo.
Expand Down
10 changes: 10 additions & 0 deletions art/Building/windows/64bit/release.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@echo off
color 0a
cd ../../../../
echo BUILDING GAME
haxelib run lime build windows -release
echo.
echo done.
pause
pwd
explorer.exe export\release\windows\bin

0 comments on commit af05e1a

Please sign in to comment.