Qt error: LNK1181: cannot open input file 'debug\main.obj'

前端 未结 8 1689
小蘑菇
小蘑菇 2021-01-02 02:39

Qt creator was working well, but suddenly shows a problem error: LNK1181: cannot open input file \'debug\\main.obj\'.
This problem shows always with any typ

8条回答
  •  醉话见心
    2021-01-02 03:28

    I got the error because of this:

    HEADERS += \ \
        $$PWD/QOakTreeViewRecursiveModel.h
    

    instead of:

    HEADERS += \
        $$PWD/QOakTreeViewRecursiveModel.h
    

提交回复
热议问题