LT: Using Luerl to Run Spaceships - Robert Virding | Code BEAM Europe 2024

Code Sync: LT: Using Luerl to Run Spaceships - Robert Virding | Code BEAM Europe 2024

Comments welcome! View the code-sync tag for more Code Sync talks!

9 Likes

Always liked that demo, @rvirding :slight_smile:

1 Like

Me too. It’s always nice to see fellow erlangians working in the space sector. :wink:

2 Likes

This comment was about my problems as an Erlang newbie with getting the demo to run on macOS.

I finally got it to work, so for anyone interested, here are the necessary steps:

brew install sdl2
brew install sdl2_ttf
brew install sdl2_image

git clone https://github.com/rvirding/ship-demo.git
cd ship-demo

git clone https://github.com/rvirding/luerl.git 
cd luerl
make
cd ..

git clone https://github.com/ninenines/esdl2.git
cd esdl2
make
cd ..

make

vi run.sh [Set paths to elib/ directories in DEMO_LIBS]

./run.sh
3 Likes