mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 23:54:06 +00:00
21 lines
478 B
Prolog
21 lines
478 B
Prolog
TEMPLATE = lib
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
#CONFIG -= qt
|
|
QT += qml quick widgets
|
|
|
|
SOURCES += \
|
|
wrapper.cpp
|
|
|
|
include(deployment.pri)
|
|
qtcAddDeployment()
|
|
|
|
HEADERS += \
|
|
wrapper.h
|
|
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../release -lwimp
|
|
|
|
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../release/libwimp.dll.a
|
|
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../release/wimp.lib
|