Newer
Older
Import / research / ui / toolkit / test / toolkit.pro
@John John on 29 Dec 2020 734 bytes bulk import from macbookpro checkouts

TARGET     = libtoolkit.so

TOOLKIT_PATH    = ../src

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

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

HEADERS_PATH = ../include

SEARCH_PATHS = $(TOOLKIT_PATH) $(HEADERS_PATH)

FLAGS      = -O3 -fpic
DEFINES    = -DTEST --std=c++11
LIBS       = -shared -lstdc++ -framework AppKit -framework OpenGL

-include Makefile.inc