1
2
3
4
5
6
7
8
9
|
option('tests', type : 'boolean', value : false, description : 'Enable building and running tests')
option('fwbuild', type : 'boolean', value : false, description : 'Enable building the firmware image for the wearable (requires oledlib)')
option('fwflash', type : 'boolean', value : false, description : 'Automatically flash the firmware with freshly built fw image (requires fwbuild)')
option('ssid', type : 'string', value : 'ssid', description : 'wireless ssid to compile into the firmware (no effect without fwbuild')
option('password', type : 'string', value : 'password', description : 'wireless password to compile into the firmware (no effect without fwbuild')
option('oledlib', type : 'string', description : 'path containing the SSD1306Spi.h file (required if fwbuild is true')
option('makeesparduino', type : 'string', description : 'path to the directory containing the makeEspArduino.mk file (required if fwbuild is true')
option('esplib', type : 'string', description : 'path to the esp8266lib (required if fwbuild is true')
option('board', type : 'string', value : 'd1_mini', description : 'board name identifier to provide to makeEspArduino')
|