~majster-pl/utorch/utorch

1 by Szymon Waliczek
initial release.
1
import QmlProject 1.1
2
3
Project {
20 by Szymon Waliczek
Auto detection of app version added in AboutPage.
4
    mainFile: "main.qml"
1 by Szymon Waliczek
initial release.
5
6
    /* Include .qml, .js, and image files from current directory and subdirectories */
7
    QmlFiles {
8
        directory: "."
9
    }
10
    JavaScriptFiles {
11
        directory: "."
12
    }
13
    ImageFiles {
14
        directory: "."
15
    }
16
    Files {
17
        filter: "*.desktop"
18
    }
19
    Files {
20 by Szymon Waliczek
Auto detection of app version added in AboutPage.
20
        filter: "www/*.html"
21
    }
22
    Files {
1 by Szymon Waliczek
initial release.
23
        filter: "Makefile"
24
    }
25
    Files {
20 by Szymon Waliczek
Auto detection of app version added in AboutPage.
26
        filter: "*.apparmor"
27
    }
28
    Files {
29
        directory: "."
30
        paths: ["manifest.json",".excludes"]
31
    }
32
    Files {
33
        directory: "www"
34
        filter: "*"
35
    }
36
    Files {
37
        directory: "www/img/"
38
        filter: "*"
39
    }
40
    Files {
41
        directory: "www/css/"
42
        filter: "*"
43
    }
44
    Files {
45
        directory: "www/js/"
1 by Szymon Waliczek
initial release.
46
        filter: "*"
47
    }
48
    Files {
49
        directory: "debian"
50
        filter: "*"
51
    }
52
    /* List of plugin directories passed to QML runtime */
53
    importPaths: [ "." ,"/usr/bin","/usr/lib/x86_64-linux-gnu/qt5/qml" ]
54
}
20 by Szymon Waliczek
Auto detection of app version added in AboutPage.
55