mirror of
https://github.com/Team4388/auto_planner.git
synced 2026-06-08 16:28:08 -06:00
6 lines
231 B
Batchfile
6 lines
231 B
Batchfile
|
|
@echo off
|
||
|
|
set files=main.c gfx\gfx.c game\motion.c game\planner.c game\math\bezier.c game\math\mathutils.c
|
||
|
|
set libs=-l./lib/x64/SDL2 -l./lib/x64/SDL2main -l./lib/x64/SDL2_image
|
||
|
|
clang %files% -o auto.exe %libs%
|
||
|
|
auto figure.txt
|