mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-21 21:19:15 +01:00
df68fc7fb5
git-svn-id: http://wiiqt.googlecode.com/svn/trunk@118 389f4c8b-5dfe-645f-db0e-df882bc27289
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
|