Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanup.
[graphlib.git] / test / hello.pro
index fb8fdb0..11492d8 100644 (file)
@@ -1,13 +1,19 @@
 TEMPLATE = app
 TARGET = hello
 
-CONFIG += qt debug
+CONFIG += qt
+CONFIG += debug
+CONFIG += profile
 
-HEADERS += DrawingArea.h \
-           DrawingThread.h \
-           DrawingWindow.h
+profile {
+       QMAKE_CFLAGS += -pg
+       QMAKE_CXXFLAGS += -pg
+       QMAKE_LFLAGS += -pg
+}
 
-SOURCES += DrawingArea.cpp \
-           DrawingThread.cpp \
-           DrawingWindow.cpp \
-           hello.cc
+INCLUDEPATH += ../
+DEPENDPATH += ../
+
+HEADERS += ../DrawingWindow.h
+SOURCES += ../DrawingWindow.cpp \
+           hello.cpp