# TODO: stb_truetype doesn't compile with some of these warnings.
CXX = g++ -std=gnu++0x -g -Wall -Werror -Wshadow -pedantic -rdynamic
MAIN = main.o
-OBJ = log.o real.o bezier.o document.o objectrenderer.o view.o screen.o vfpu.o quadtree.o graphicsbuffer.o framebuffer.o shaderprogram.o stb_truetype.o gl_core44.o add_digits_asm.o sub_digits_asm.o mul_digits_asm.o div_digits_asm.o arbint.o controlpanel.o
+OBJ = log.o real.o bezier.o document.o objectrenderer.o view.o screen.o vfpu.o quadtree.o graphicsbuffer.o framebuffer.o shaderprogram.o stb_truetype.o gl_core44.o add_digits_asm.o sub_digits_asm.o mul_digits_asm.o div_digits_asm.o arbint.o moc_controlpanel.o controlpanel.o
QT_INCLUDE := -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -Itests -I.
-
+QT_DEF := -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB
QT_LIB := -L/usr/lib/x86_64-linux-gnu -lQtGui -lQtCore -lpthread
LIB_x86_64 = ../contrib/lib/libSDL2-2.0.so.0 -lGL -lgmp $(QT_LIB)
DEF = -DREAL=$(REALTYPE) -DQUADTREE_DISABLED
+CFLAGS := $(CFLAGS) $(QT_DEF)
+
demo : $(BIN) ../tools/stream_plot.py
mkdir -p ../data/
$(RM) ../data/performance.dat
-include $(DEPS)
+moc_controlpanel.cpp : controlpanel.cpp controlpanel.h
+ moc $(DEF) controlpanel.h -o moc_controlpanel.cpp
+
../obj/%.o : %.cpp main.h
@mkdir -p $(dir $@)
$(CXX) $(CFLAGS) $(DEF) -c -MMD -o $@ $<
*/
class ControlPanel : public QMainWindow
{
- //Q_OBJECT // Having this causes shit about undefined vtables
+ Q_OBJECT // Having this causes shit about undefined vtables
// Not having it means things break
// Apparently you need "qmake" to build qt applications
// Or some bullshit -_-