This repository has been archived on 2023-01-29. You can view files and clone it, but cannot push or open issues or pull requests.

14 lines
341 B
Bash
Executable File

#!/bin/sh
mkdir -p build
pushd build
rm -rf *
# Plugin library
c++ -Wall -std=c++11 -c -fpic -g ../code/rt_weekend.cpp -o librt_weekend.o
c++ -shared -o librt_weekend.so librt_weekend.o
rm librt_weekend.o
# Platform layer host application
c++ -Wall -std=c++11 -g ../code/sdl_platform.cpp -o sdl_platform `sdl2-config --libs --cflags`
popd