diff --git a/CMakeLists.txt b/CMakeLists.txt index d0bbbff..3dea20d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/Makefile b/Makefile index bf65782..9169fd3 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ ## Makefile ## -SRC = main.c \ +SRC = src/main.c \ src/game_loader.c OBJ = $(SRC:%.c=%.o) diff --git a/main.c b/src/main.c similarity index 100% rename from main.c rename to src/main.c