This repository has been archived on 2023-01-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
1weekendraytracer/build.sh
2019-01-15 18:11:20 +01:00

14 lines
357 B
Bash
Executable File

#!/bin/sh
mkdir -p build
pushd build
rm -rf sdl_platform.dSYM
# 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