1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import qbs Project { name: "Settings" StaticLibrary { name: "settings" Depends { name: "cpp" } cpp.defines: "C_LIKE_CONFIG" cpp.cxxLanguageVersion: "c++17" files: [ "configuration.cpp", "configuration.h" ] } }