You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
392 B
23 lines
392 B
|
3 years ago
|
HEADERS += $$PWD/mpvhead.h
|
||
|
|
HEADERS += $$PWD/mpvtool.h
|
||
|
|
HEADERS += $$PWD/mpv.h
|
||
|
|
SOURCES += $$PWD/mpv.cpp
|
||
|
|
|
||
|
|
#表示64位的构建套件
|
||
|
|
contains(QT_ARCH, x86_64) {
|
||
|
|
strLib = winlib64
|
||
|
|
strInclude = include64
|
||
|
|
} else {
|
||
|
|
strLib = winlib
|
||
|
|
strInclude = include
|
||
|
|
}
|
||
|
|
|
||
|
|
INCLUDEPATH += $$PWD/$$strInclude
|
||
|
|
win32 {
|
||
|
|
LIBS += -L$$PWD/$$strLib/ -llibmpv
|
||
|
|
}
|
||
|
|
|
||
|
|
#需要自己改为对应目录下的库
|
||
|
|
unix:!macx {}
|
||
|
|
macx {}
|