aboutsummaryrefslogtreecommitdiff
path: root/lib/settings/settings.qbs
blob: e49339f3f1300a3b96dfa327ae178dd0892120da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import qbs

Project {
    name: "Settings"

    StaticLibrary {
        name: "settings"

        Depends { name: "cpp" }

        cpp.cxxLanguageVersion: "c++17"

        files: [
            "configuration.cpp",
            "configuration.h"
        ]
    }
}