summaryrefslogtreecommitdiffstats
path: root/labb3/tsp/TSP.pro
diff options
context:
space:
mode:
Diffstat (limited to 'labb3/tsp/TSP.pro')
-rw-r--r--labb3/tsp/TSP.pro40
1 files changed, 40 insertions, 0 deletions
diff --git a/labb3/tsp/TSP.pro b/labb3/tsp/TSP.pro
new file mode 100644
index 0000000..a63cef6
--- /dev/null
+++ b/labb3/tsp/TSP.pro
@@ -0,0 +1,40 @@
+QT += widgets
+SOURCES = $$PWD/src/*.cpp
+#SOURCES += $$PWD/lib/*.cpp
+HEADERS = $$PWD/src/*.h
+#HEADERS += $$PWD/lib/*.h
+
+QMAKE_CXXFLAGS += -std=c++11
+
+INCLUDEPATH += $$PWD/lib/
+
+# Copies the given files to the destination directory
+defineTest(copyToDestdir) {
+ files = $$1
+
+ for(FILE, files) {
+ DDIR = $$OUT_PWD
+
+ # Replace slashes in paths with backslashes for Windows
+ win32:FILE ~= s,/,\\,g
+ win32:DDIR ~= s,/,\\,g
+
+ !win32 {
+ QMAKE_POST_LINK += cp -r '"'$$FILE'"' '"'$$DDIR'"' $$escape_expand(\\n\\t)
+ }
+ win32 {
+ QMAKE_POST_LINK += xcopy '"'$$FILE'"' '"'$$DDIR'"' /e /y $$escape_expand(\\n\\t)
+ }
+ }
+
+ export(QMAKE_POST_LINK)
+}
+!win32 {
+ copyToDestdir($$files($$PWD/res/*))
+}
+win32 {
+ copyToDestdir($$PWD/res)
+}
+macx {
+ cache()
+}