mirror of
https://github.com/libretro/RetroArch
synced 2025-02-10 03:39:56 +00:00
28 lines
423 B
Prolog
28 lines
423 B
Prolog
|
#-------------------------------------------------
|
||
|
#
|
||
|
# Project created by QtCreator 2014-10-21T21:15:44
|
||
|
#
|
||
|
#-------------------------------------------------
|
||
|
|
||
|
QT += qml quick widgets
|
||
|
|
||
|
TARGET = wimp
|
||
|
TEMPLATE = lib
|
||
|
|
||
|
DEFINES += WIMP_LIBRARY
|
||
|
|
||
|
SOURCES += \
|
||
|
wimp.cpp
|
||
|
|
||
|
HEADERS +=\
|
||
|
wimp.h \
|
||
|
wimp_global.h
|
||
|
|
||
|
unix {
|
||
|
target.path = /usr/lib
|
||
|
INSTALLS += target
|
||
|
}
|
||
|
|
||
|
RESOURCES += \
|
||
|
qml.qrc
|