Start on the rasteriser implementation
This commit is contained in:
9
compile
9
compile
@@ -11,9 +11,18 @@ RAYTRACER_SRC="src/window/*.c \
|
||||
src/math/*.c \
|
||||
"
|
||||
|
||||
RASTERISER_SRC="src/window/*.c \
|
||||
src/vector/*.c \
|
||||
src/scene/*.c \
|
||||
src/rasteriser/*.c \
|
||||
src/math/*.c \
|
||||
"
|
||||
|
||||
BUILD=build_dir
|
||||
RAYTRACER_OUT="$BUILD/raytracer"
|
||||
RASTERISER_OUT="$BUILD/rasteriser"
|
||||
|
||||
mkdir -p $BUILD
|
||||
|
||||
(set -x ; $CC $CFLAGS $LIBS $RAYTRACER_SRC -o $RAYTRACER_OUT)
|
||||
(set -x ; $CC $CFLAGS $LIBS $RASTERISER_SRC -o $RASTERISER_OUT)
|
||||
|
||||
Reference in New Issue
Block a user