-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
83 lines (70 loc) · 3.37 KB
/
CMakeLists.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
##########################################################################
# "THE ANY BEVERAGE-WARE LICENSE" (Revision 42 - based on beer-ware
# license):
# <[email protected]> wrote this file. As long as you retain this notice
# you can do whatever you want with this stuff. If we meet some day, and
# you think this stuff is worth it, you can buy me a be(ve)er(age) in
# return. (I don't like beer much.)
#
# Matthias Kleemann
##########################################################################
cmake_minimum_required(VERSION 2.8)
### TOOLCHAIN SETUP AREA #################################################
# Set any variables used in the toolchain prior project() call. In that
# case they are already set and used.
##########################################################################
##########################################################################
# tools to beused for programming the AVR
##########################################################################
set(AVR_UPLOADTOOL avrdude)
#set(AVR_PROGRAMMER avrispmkII)
#set(AVR_UPLOADTOOL_PORT usb)
set(AVR_PROGRAMMER stk500v2)
set(AVR_UPLOADTOOL_PORT /dev/ttyACM0)
##########################################################################
# AVR and fuses needs to be set
##########################################################################
set(AVR_MCU atmega2560)
set(AVR_H_FUSE 0xd9)
set(AVR_L_FUSE 0xc3)
set(MCU_SPEED "16000000UL")
### END TOOLCHAIN SETUP AREA #############################################
# Intentionally left blank, due to a different approach of using the
# toolchain file via -DCMAKE_TOOLCHAIN_FILE=path/to/generic-gcc-avr.cmake
# at the cmake command line call
#
include(AVRhal/generic-gcc-avr.cmake)
##########################################################################
# name your project
##########################################################################
project(EPROM)
##########################################################################
# status messages
##########################################################################
message(STATUS "Current uploadtool is: ${AVR_UPLOADTOOL}")
message(STATUS "Current programmer is: ${AVR_PROGRAMMER}")
message(STATUS "Current upload port is: ${AVR_UPLOADTOOL_PORT}")
message(STATUS "Current uploadtool options are: ${AVR_UPLOADTOOL_OPTIONS}")
message(STATUS "Current MCU is set to: ${AVR_MCU}")
message(STATUS "Current H_FUSE is set to: ${AVR_H_FUSE}")
message(STATUS "Current L_FUSE is set to: ${AVR_L_FUSE}")
##########################################################################
# set build type
##########################################################################
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif(NOT CMAKE_BUILD_TYPE)
##########################################################################
# include search paths
##########################################################################
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/AVRhal/include)
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/AVRhal/driver)
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/lib27c)
##########################################################################
# building library and application in their subdirectories
##########################################################################
add_subdirectory(AVRhal)
add_subdirectory(lib27c)
add_subdirectory(test_io)
add_subdirectory(test_ascii)
add_subdirectory(src)