Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add some words on installation.
[graphlib.git] / test / hello.pro
index f788dca..11492d8 100644 (file)
@@ -1,6 +1,19 @@
+TEMPLATE = app
 TARGET = hello
-CONFIG += qt debug
-SOURCES += hello.cc \
-        DrawingArea.cpp \
-        DrawingThreadCore.cpp  \
-        MainDrawingThread.cpp
+
+CONFIG += qt
+CONFIG += debug
+CONFIG += profile
+
+profile {
+       QMAKE_CFLAGS += -pg
+       QMAKE_CXXFLAGS += -pg
+       QMAKE_LFLAGS += -pg
+}
+
+INCLUDEPATH += ../
+DEPENDPATH += ../
+
+HEADERS += ../DrawingWindow.h
+SOURCES += ../DrawingWindow.cpp \
+           hello.cpp