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.
tdevelop/languages/cpp/app_templates/opieapp/app.pro

39 lines
941 B

TEMPLATE = quick-template
CONFIG = qt qtopia warn_on release zecke-libqpe zecke-libopie
HEADERS = %{APPNAMELC}.h
SOURCES = %{APPNAMELC}.cpp
INTERFACES = %{APPNAMELC}base.ui
TARGET = %{APPNAMELC}
QMAKE_LIBDIR = $(OPIEDIR)/lib
OPIE-SPEC=6
QUICK_SPEC_FOO = $$(OPIE_BUILD_QUICK_APP)
contains( TEMPLATE, quick-template ){
contains( QUICK_SPEC_FOO, quick-app-lib ){
message( "foo" )
system( rm $$TARGET )
system( ln -s $$(OPIEDIR)/bin/quictdelauncher $$TARGET)
DEFINES += OPIE_APP_INTERFACE
TEMPLATE = lib
CONFIG += dll
}else{
LI = $$join( TARGET, "lib", "lib", ".so*" )
system( rm $$LI )
TEMPLATE = app
}
}
zecke-libqpe {
INCLUDEPATH += $(OPIEDIR)/include
LIBS += -lqpe
DEPENDPATH += $(OPIEDIR)/include
}
zecke-libopie {
INCLUDEPATH += $(OPIEDIR)/include
DEPENDPATH += $(OPIEDIR)/include
LIBS += -lopie
}