mirror of
https://github.com/martravi/wiiqt.git
synced 2024-11-04 16:45:05 +01:00
37 lines
564 B
Prolog
37 lines
564 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2011-01-05T10:05:50
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
|
|
TARGET = thp_player
|
|
TEMPLATE = app
|
|
|
|
CONFIG += mobility
|
|
#MOBILITY = multimedia
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
thpwindow.cpp \
|
|
gcvid.cpp
|
|
|
|
HEADERS += thpwindow.h \
|
|
gcvid.h
|
|
|
|
FORMS += thpwindow.ui
|
|
|
|
#CONFIG += static
|
|
win32 {
|
|
message("win32 build")
|
|
INCLUDEPATH += . ./libpng/include
|
|
LIBS += -L./libpng/lib -ljpeg
|
|
}
|
|
else {
|
|
LIBS += -ljpeg
|
|
}
|
|
|
|
RESOURCES += \
|
|
rc.qrc
|