reflow/CMakeLists.txt

22 lines
936 B
CMake
Raw Normal View History

2012-10-01 19:03:30 +00:00
#=============================================================================#
# Author: QueezyTheGreat #
# Date: 26.04.2011 #
# #
# Description: Arduino CMake example #
# #
#=============================================================================#
set(CMAKE_TOOLCHAIN_FILE ArduinoToolchain) # Arduino Toolchain
cmake_minimum_required(VERSION 2.8.5)
project(ReflowCtl C CXX)
set(ARDUINO_DEFAULT_BOARD diecimila) # Default Board ID, when not specified
set(ARDUINO_DEFAULT_PORT /dev/ttyUSB0) # Default Port, when not specified
generate_arduino_firmware(reflowctl
SKETCH reflowctl
PORT /dev/ttyUSB0
BOARD diecimila)