forked from pilight/pilight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeConfig.txt
61 lines (61 loc) · 4.9 KB
/
CMakeConfig.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
set(WEBSERVER ON CACHE BOOL "enable the built-in webserver")
set(UPDATE ON CACHE BOOL "enable the built-in update checker")
set(FIRMWARE ON CACHE BOOL "auto update the pilight firmware")
set(PROTOCOL_ALECTO_WSD17 ON CACHE BOOL "support for the Alecto WSD 17 protocol")
set(PROTOCOL_RPI_TEMP ON CACHE BOOL "support for the RPi temperature sensor")
set(PROTOCOL_BRENNENSTUHL_SWITCH ON CACHE BOOL "support for the Brennenstuhl switch protocol")
set(PROTOCOL_CLARUS ON CACHE BOOL "support for the Clarus switch protocol")
set(PROTOCOL_CLEVERWATTS ON CACHE BOOL "support for the Cleverwatts switch protocol")
set(PROTOCOL_COCO_SWITCH ON CACHE BOOL "support for the new ClickOnClickOff switch protocol")
set(PROTOCOL_COGEX_SWITCH ON CACHE BOOL "support for the Cogex switch protocol")
set(PROTOCOL_CONRAD_RSL_SWITCH ON CACHE BOOL "support for the Conrad RSL switch protocol")
set(PROTOCOL_CONRAD_RSL_CONTACT ON CACHE BOOL "support for the Conrad RSL contact sensor protocol")
set(PROTOCOL_CONRAD_WEATHER ON CACHE BOOL "support for the Conrad weather stations protocol")
set(PROTOCOL_DATETIME ON CACHE BOOL "support for the (NTP) date and time protocol")
set(PROTOCOL_DS18B20 ON CACHE BOOL "support for the 1-Wire ds18b20 temperature sensor")
set(PROTOCOL_DS18S20 ON CACHE BOOL "support for the 1-Wire ds18s20 temperature sensor")
set(PROTOCOL_DHT11 ON CACHE BOOL "support for the DHT11 temperature-humidity sensor")
set(PROTOCOL_DHT22 ON CACHE BOOL "support for the DHT22/AM2302 temperature-humidity sensor")
set(PROTOCOL_DIO_SWITCH ON CACHE BOOL "support for the D-IO switch protocol")
set(PROTOCOL_EHOME ON CACHE BOOL "support for the eHome switch protocol")
set(PROTOCOL_ELRO_SWITCH ON CACHE BOOL "support for the Elro switch protocol")
set(PROTOCOL_GENERIC_DIMMER ON CACHE BOOL "support for the generic dimmer protocol")
set(PROTOCOL_GENERIC_SCREEN ON CACHE BOOL "support for the generic screen protocol")
set(PROTOCOL_GENERIC_SWITCH ON CACHE BOOL "support for the generic switch protocol")
set(PROTOCOL_GENERIC_WEATHER ON CACHE BOOL "support for the generic weather protocol")
set(PROTOCOL_GENERIC_WEBCAM ON CACHE BOOL "support for the generic webcam protocol")
set(PROTOCOL_HOMEEASY_OLD ON CACHE BOOL "support for the Home Easy switch protocol")
set(PROTOCOL_IMPULS ON CACHE BOOL "support for the Impuls switch protocol")
set(PROTOCOL_INTERTECHNO_SWITCH ON CACHE BOOL "support for the new Intertechno switch protocol")
set(PROTOCOL_INTERTECHNO_OLD ON CACHE BOOL "support for the old Intertecho switch protocol")
set(PROTOCOL_KAKU_DIMMER ON CACHE BOOL "support for the old KlikAanKlikUit dimmer protocol")
set(PROTOCOL_KAKU_SWITCH_OLD ON CACHE BOOL "support for the old KlikAanKlikUit switch protocol")
set(PROTOCOL_KAKU_SCREEN_OLD ON CACHE BOOL "support for the old KlikAanKlikUit screen protocol")
set(PROTOCOL_KAKU_SWITCH ON CACHE BOOL "support for the new KlikAanKlikUit switch protocol")
set(PROTOCOL_KAKU_SCREEN ON CACHE BOOL "support for the new KlikAanKlikUit screen protocol")
set(PROTOCOL_KAKU_CONTACT ON CACHE BOOL "support for the new KlikAanKlikUit contact protocol")
set(PROTOCOL_LM75 ON CACHE BOOL "support for the lm75 i2c temperature sensor")
set(PROTOCOL_LM76 ON CACHE BOOL "support for the lm76 i2c temperature sensor")
set(PROTOCOL_LIRC ON CACHE BOOL "support for the Lirc API")
set(PROTOCOL_MUMBI_SWITCH ON CACHE BOOL "support for the Mumbi switch protocol")
set(PROTOCOL_NEXA_SWITCH ON CACHE BOOL "support for the Nexa switch protocol")
set(PROTOCOL_OPENWEATHERMAP ON CACHE BOOL "support for the Open Weather Map API")
set(PROTOCOL_POLLIN_SWITCH ON CACHE BOOL "support for the polling switch protocol")
set(PROTOCOL_PROGRAM ON CACHE BOOL "support for the program switching protocol")
set(PROTOCOL_QUIGG_SWITCH ON CACHE BOOL "support for Quigg switch protocol")
set(PROTOCOL_RAW ON CACHE BOOL "support for the raw / simulator")
set(PROTOCOL_REV ON CACHE BOOL "support for the Rev protocol")
set(PROTOCOL_RELAY ON CACHE BOOL "support for GPIO relay devices")
set(PROTOCOL_SELECTREMOTE ON CACHE BOOL "support for the Selectremote switch protocol")
set(PROTOCOL_SILVERCREST ON CACHE BOOL "support for the Silvercrest switch protocol")
set(PROTOCOL_SUNRISESET ON CACHE BOOL "support for the Sunrise / Sunset calculator")
set(PROTOCOL_TEKNIHALL ON CACHE BOOL "support for the Teknihall weather station protocol")
set(PROTOCOL_TFA ON CACHE BOOL "support for the Three channel weather station protocol")
set(PROTOCOL_THREECHAN ON CACHE BOOL "support for the TFA weather station protocol")
set(PROTOCOL_WUNDERGROUND ON CACHE BOOL "support for the Weather Underground API")
set(PROTOCOL_X10 ON CACHE BOOL "support for the X10 protocol")
set(PROTOCOL_XBMC ON CACHE BOOL "support for the XBMC API")
set(HARDWARE_433_GPIO ON CACHE BOOL "support for the direct GPIO communication")
set(HARDWARE_433_LIRC ON CACHE BOOL "support for the lirc_rpi kernel module")
set(HARDWARE_433_PILIGHT ON CACHE BOOL "support for the pilight kernel module")
set(USE_SOFT_FLOAT OFF CACHE BOOL "Compile for soft float abi kernels")