diff options
author | scratko <m@scratko.xyz> | 2024-11-21 23:01:56 +0300 |
---|---|---|
committer | scratko <m@scratko.xyz> | 2024-11-21 23:01:56 +0300 |
commit | e9078b6980eaf22c1f6352930bd36d4a9e85a4b0 (patch) | |
tree | dea9e3659bd18dbd52dc3eedb55ac6acfcc14370 /Makefile | |
parent | ca449b813cef6c8f7348ff51302f125587a90a53 (diff) | |
download | picture-puzzle-e9078b6980eaf22c1f6352930bd36d4a9e85a4b0.tar.gz picture-puzzle-e9078b6980eaf22c1f6352930bd36d4a9e85a4b0.tar.bz2 picture-puzzle-e9078b6980eaf22c1f6352930bd36d4a9e85a4b0.zip |
Including resources in the object file
Convert pictures to array data (image_converter/converter.c)
Resources are located in image_converter/resources.o
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ -SRCMODULES = puzzle.cpp gameplay.cpp menu_callbacks.cpp solution_algorithm.cpp img_handler.cpp main.cpp +SRCMODULES = puzzle.cpp gameplay.cpp menu_callbacks.cpp solution_algorithm.cpp img_handler.cpp \ + image_converter/resources.cpp main.cpp OBJMODULES = $(SRCMODULES:.cpp=.o) CXX = g++ CXXFLAGS = -Wall -g |