.pro file in BlackBerry 10 apps development

I am learning BlackBerry 10 apps development and referring BlackBerry's documentation for this . I have downloaded their sample apps but in those projects I have seen the following code in .pro file .

TEMPLATE = app
TARGET = addressbook

CONFIG += qt warn_on debug_and_release cascades

INCLUDEPATH += ../src
SOURCES += ../src/*.cpp
HEADERS += ../src/*.hpp ../src/*.h
LIBS += -lbbpim

lupdate_inclusion {
SOURCES += ../assets/*.qml
}

device {
CONFIG(release, debug|release) {
DESTDIR = o.le-v7
TEMPLATE = lib
QMAKE_CXXFLAGS_RELEASE += -fvisibility=hidden -mthumb
}
CONFIG(debug, debug|release) {
DESTDIR = o.le-v7-g
}
}

simulator {
CONFIG(release, debug|release) {
DESTDIR = o
}
CONFIG(debug, debug|release) {
DESTDIR = o-g
}
}

OBJECTS_DIR = $${DESTDIR}/.obj
MOC_DIR = $${DESTDIR}/.moc
RCC_DIR = $${DESTDIR}/.rcc
UI_DIR = $${DESTDIR}/.ui

suredelete.target = sureclean
suredelete.commands = $(DEL_FILE) $${MOC_DIR}/*; $(DEL_FILE) $${RCC_DIR}/*; $(DEL_FILE) $${UI_DIR}/*
suredelete.depends = distclean

QMAKE_EXTRA_TARGETS += suredelete

TRANSLATIONS = \
$${TARGET}_en_GB.ts \
$${TARGET}_fr.ts \
$${TARGET}_it.ts \
$${TARGET}_de.ts \
$${TARGET}_es.ts \
$${TARGET}.ts


So when I found the information about .pro file the have mentioned only that this file is used to include different bps library and given only code like this ---

LIBS += -lbbpim.

And when we create any project theres default code in .pro file like this---

APP_NAME = CPPLink

CONFIG += qt warn_on cascades10

include(config.pri)


So I am not getting what's the remaining code in their sample apps in .pro file.

Can anyone tell me ?
Look up the documentation of Qt's qmake utility.
The rest of the content in the .pro files are additional information needed for compilation of your project.
SOURCES: path to locate source files
INCLUDE: "standard" BlackBerry development libraries.
HEADER: .h, .hpp file directories.
and the rest, destination folder, configuration files, object directories, application name etc
Topic archived. No new replies allowed.