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 .
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.
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