forked from pilight/pilight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeConfig.txt
46 lines (46 loc) · 3.73 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
set(WEBSERVER ON CACHE BOOL "enable the built-in webserver")
set(UPDATE ON CACHE BOOL "enable the built-in update checker")
set(PROTOCOL_ALECTO ON CACHE BOOL "support for the Alecto weather stations 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_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_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_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_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_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_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 polling 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 relay devices")
set(PROTOCOL_SELECTREMOTE ON CACHE BOOL "support for the Select-Remote switch protocol")
set(PROTOCOL_SILVERCREST ON CACHE BOOL "support for the Silvercrest switch protocol")
set(PROTOCOL_WUNDERGROUND ON CACHE BOOL "support for the Weather Underground 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(DEBUG OFF CACHE BOOL "turn on extended memory debug information")
set(USE_SOFT_FLOAT OFF CACHE BOOL "Compile for soft float abi kernels")