reflow/CMakeLists.txt

22 lines
948 B
CMake
Raw Normal View History

2012-10-01 19:03:30 +00:00
#=============================================================================#
# Author: QueezyTheGreat #
# Date: 26.04.2011 #
# #
# Description: Arduino CMake example #
# #
#=============================================================================#
2012-10-02 11:08:00 +00:00
set(CMAKE_TOOLCHAIN_FILE cmake/ArduinoToolchain.cmake) # Arduino Toolchain
2012-10-01 19:03:30 +00:00
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)