* Removed any hotreload functionality to simplify the code-base, may introduce it back again if there's a need to redesign the UI as it was used for dynamic prototyping. * Split the code base into two packages: generator and frontend. The 'generator' package is reponsible for the functionality of making the atlases, etc... while the frontend is pure the immediate mode UI implemented with raygui and application globals * New build scripts, windows only for now.
14 lines
No EOL
342 B
Batchfile
14 lines
No EOL
342 B
Batchfile
@echo off
|
|
|
|
mkdir build
|
|
|
|
FOR /F "tokens=*" %%g IN ('odin root') do (SET ODIN_ROOT=%%g)
|
|
|
|
echo %ODIN_ROOT%
|
|
|
|
@REM If it fails to find your odin root folder, copy the raylib.dll manually into the build folder, it's a runtime requirement
|
|
copy %ODIN_ROOT%\vendor\raylib\windows\raylib.dll build\raylib.dll
|
|
|
|
pushd vendors\dialog
|
|
call .\build.bat
|
|
popd |