This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#!/bin/bash | |
set -o pipefail -o noclobber -o nounset | |
### | |
# Variable definitions | |
### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vi:syntax=cmake | |
set(ARDUINO_ARLI_LIBS) | |
# Library Adafruit GFX Library, version 1.2.2, url: http://downloads.arduino.cc/libraries/github.com/adafruit/Adafruit_GFX_Library-1.2.2.zip | |
set(ARDUINO_ARLI_LIBS ${ARDUINO_ARLI_LIBS} Adafruit_GFX) | |
# Library DS1307RTC, version 1.4.0, url: http://downloads.arduino.cc/libraries/github.com/PaulStoffregen/DS1307RTC-1.4.0.zip | |
set(ARDUINO_ARLI_LIBS ${ARDUINO_ARLI_LIBS} DS1307RTC) | |
# Library Adafruit LED Backpack Library, version 1.1.6, url: http://downloads.arduino.cc/libraries/github.com/adafruit/Adafruit_LED_Backpack_Library-1.1.6.zip | |
set(ARDUINO_ARLI_LIBS ${ARDUINO_ARLI_LIBS} Adafruit_LEDBackpack) | |
# Library Adafruit Unified Sensor, version 1.0.2, url: http://downloads.arduino.cc/libraries/github.com/adafruit/Adafruit_Unified_Sensor-1.0.2.zip | |
set(ARDUINO_ARLI_LIBS ${ARDUINO_ARLI_LIBS} Adafruit_Sensor) |