1import qbs 1.0
2
3Project {
4    Application {
5        name: "PosteRazor"
6
7        Depends {
8            name: "Qt"
9            submodules: ["gui", "printsupport"]
10        }
11        Depends { name: 'cpp' }
12
13        cpp.includePaths: ['.', buildDirectory]
14        cpp.defines: ['QT_SHARED']
15
16        files : [
17            "main.cpp",
18            "controller.cpp",
19            "mainwindow.cpp",
20            "wizard.cpp",
21            "paintcanvas.cpp",
22            "pdfwriter.cpp",
23            "posterazorcore.cpp",
24            "snapspinbox.cpp",
25            "types.cpp",
26            "wizardcontroller.cpp",
27            "controller.h",
28            "imageloaderinterface.h",
29            "mainwindow.h",
30            "wizard.h",
31            "paintcanvas.h",
32            "paintcanvasinterface.h",
33            "pdfwriter.h",
34            "posterazorcore.h",
35            "snapspinbox.h",
36            "types.h",
37            "wizardcontroller.h",
38            "imageloaderqt.cpp",
39            "imageloaderqt.h",
40            "mainwindow.ui",
41            "wizard.ui",
42            "posterazor.qrc"
43        ]
44    }
45}
46