Update Vcs-* headers.
[debian/fosdem-schedule.git] / src / global.pri
1 # This is 'global.pri' file which defines
2 # GLOBAL definitions for the project
3 # include this file in each "*.pro" file, where it's needed
4 # USAGE: include(./global.pri)
5
6 # Define 'MAEMO' specific CONFIG/DEFINE
7 # To handle 'MAEMO' specific soruces/code
8 DISTRO = $$system(cat /etc/issue)
9 contains( DISTRO, [Mm]aemo ) {
10     # for 'MAEMO' specific source code parts
11     DEFINES += MAEMO
12     # for eg. including 'MAEMO' specific files
13     CONFIG += maemo
14 }
15
16 contains( DISTRO, [Ii]nternet ) {
17     contains( DISTRO, [Tt]ablet ) {
18         # Nokia N810 device
19         DEFINES += N810
20     }
21 }
22