equal
deleted
inserted
replaced
|
1 TEMPLATE = subdirs |
|
2 |
|
3 include(../../common.pri) |
|
4 |
|
5 maemo5 { |
|
6 SUBDIRS += n900 |
|
7 } |
|
8 |
|
9 maemo6 { |
|
10 equals(sensord_enabled,yes) { |
|
11 SUBDIRS += maemo6 |
|
12 } else { |
|
13 message("sensord library missing") |
|
14 } |
|
15 } |
|
16 |
|
17 symbian { |
|
18 equals(sensors_symbian_enabled,yes) { |
|
19 SUBDIRS += symbian |
|
20 } else:equals(sensors_s60_31_enabled,yes) { |
|
21 SUBDIRS += s60_sensor_api |
|
22 } else { |
|
23 message("No native sensor interface found") |
|
24 } |
|
25 } |
|
26 |
|
27 SUBDIRS += generic |
|
28 |
|
29 # Allow forcing extra plugins to build even if they won't run |
|
30 BUILD_ALL_PLUGINS=$$(BUILD_ALL_PLUGINS) |
|
31 equals(BUILD_ALL_PLUGINS,1) { |
|
32 SUBDIRS *= n900 dummy |
|
33 } |
|
34 |