Newer
Older
Import / research / ui / toolkit / experiment / Makefile
@John John on 29 Dec 2020 825 bytes bulk import from macbookpro checkouts
TARGET          = experiment

TOOLKIT_PATH    = ../src

TOOLKIT_SOURCES = PicoPNG.cpp \
				  			  TrueType.cpp \
				  			  FontManager.cpp \
				  				MemoryMapping.cpp \
                  Graphics.cpp \
									Painter.cpp \
									Variant.cpp \
									Test.cpp \
									SignalSlot.cpp \
									Widget.cpp \
									Window.cpp \
									Application.cpp \
									Object.cpp \
									CommonWidgets.cpp \
									UiBuilder.cpp \
									XmlParser.cpp

SOURCES         = $(patsubst %.cpp,$(TOOLKIT_PATH)/%.cpp,$(TOOLKIT_SOURCES)) \
                  main.cpp

INCLUDES        = -Os -I../include
# INCLUDES        = -g -O0 -I../include
DEFINES         = -DTEST --std=c++11
LIBS            = -lstdc++ -framework AppKit -framework OpenGL -framework CoreVideo

-include Makefile.inc