Moving the main to the sources folder

This commit is contained in:
AnonymusRaccoon
2020-02-27 10:04:42 +01:00
parent 55e819359b
commit d8518b25a1
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -198,7 +198,7 @@ add_executable(My3D
lib/xmlparser/src/xmlparser.c
lib/xmlparser/src/xmlproperties.c
src/game_loader.c
main.c
src/main.c
lib/gamacon/include/errors.h
lib/gamacon/src/ui/button.c
lib/gamacon/src/ui/setup_ui.c
+1 -1
View File
@@ -5,7 +5,7 @@
## Makefile
##
SRC = main.c \
SRC = src/main.c \
src/game_loader.c
OBJ = $(SRC:%.c=%.o)
View File