I'm trying to learn qbs and use it for Qt projects in Qt Creator. What is
wrong with my project file?  I get the following error:

:-1: error: cannot find -lC:/SDKs/Qt/5.3/mingw482_32/lib/Qt5Cored
:-1: error: cannot find -lC:/SDKs/Qt/5.3/mingw482_32/lib/Qt5Guid
:-1: error: cannot find -lC:/SDKs/Qt/5.3/mingw482_32/lib/Qt5Widgetsd

import qbs


Product {

    type: "application" // To suppress bundle generation on Mac

    name: "test_ResourceFileManager"


    Depends { name: "cpp" }

    cpp.cppFlags: "-std=c++11"


    Depends {

        name: "Qt";

        submodules: ["core", "gui", "widgets"]

    }


    files: [

        "src/main.cpp",

        "src/forms/mainwindow.h",

        "src/forms/mainwindow.cpp",

        "src/forms/mainwindow.ui"

    ]


    Group {     // Properties for the produced executable

        fileTagsFilter: product.type

        qbs.install: true

    }

}
_______________________________________________
QBS mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/qbs

Reply via email to