aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/valgrindfake/valgrindfake.qbs
blob: 1aaf32e86f5c5ca1fc6c71ce78c1dc01bed4a168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import qbs

CppApplication {
    name: "valgrind-fake"
    consoleApplication: true
    destinationDirectory: project.ide_bin_path
    Depends { name: "Qt"; submodules: ["network", "xml"]; }
    cpp.cxxLanguageVersion: "c++11"
    files: [
        "main.cpp",
        "outputgenerator.h", "outputgenerator.cpp"
    ]
}