]> git.donarmstrong.com Git - kiibohd-controller.git/blob - CMakeLists.txt
Preparing from initial AVR USB NKRO support.
[kiibohd-controller.git] / CMakeLists.txt
1 ###| CMAKE Kiibohd Controller |###
2 #
3 # Jacob Alexander 2011-2014
4 # Due to this file's usefulness:
5 #
6 # Released into the Public Domain
7 #
8 ###
9
10
11
12 ###
13 # Chip Selection
14 #
15
16 #| You _MUST_ set this to match the microcontroller you are trying to compile for
17 #| You _MUST_ clean the build directory if you change this value
18 #|
19 set( CHIP
20 #       "at90usb162"       # Teensy   1.0 (avr)
21 #       "atmega32u4"       # Teensy   2.0 (avr)
22 #       "at90usb646"       # Teensy++ 1.0 (avr)
23         "at90usb1286"      # Teensy++ 2.0 (avr)
24 #       "mk20dx128"        # Teensy   3.0 (arm)
25 #       "mk20dx256"        # Teensy   3.1 (arm)
26 )
27
28
29
30 ###
31 # Compiler Intialization
32 #
33 include( Lib/CMake/initialize.cmake )
34
35
36
37 ###
38 # Project Modules
39 #
40
41 #| Note: This is the only section you probably want to modify
42 #| Each module is defined by it's own folder (e.g. Scan/Matrix represents the "Matrix" module)
43 #| All of the modules must be specified, as they generate the sources list of files to compile
44 #| Any modifications to this file will cause a complete rebuild of the project
45
46 #| Please look at the {Scan,Macro,Output,Debug} for information on the modules and how to create new ones
47
48 ##| Deals with acquiring the keypress information and turning it into a key index
49 set(   ScanModule "DPH" )
50
51 ##| Provides the mapping functions for DefaultMap and handles any macro processing before sending to the OutputModule
52 set(  MacroModule "PartialMap" )
53
54 ##| Sends the current list of usb key codes through USB HID
55 set( OutputModule "pjrcUSB" )
56
57 ##| Debugging source to use, each module has it's own set of defines that it sets
58 set(  DebugModule "full" )
59
60
61
62 ###
63 # Keymap Configuration (XXX - Not worky yet, currently ignored)
64 #
65
66 ##| If there are multiple DefaultMaps, it is defined here. If, the specified DefaultMap is not found, defaultMap.h is used.
67 set(   DefaultMap "kishsaver" )
68
69 ##| PartialMap combined keymap layering. The first keymap has the "least" precedence.
70 set(  CombinedMap colemak capslock2ctrl )
71
72 ##| ParitalMaps available on top of the CombinedMap. If there are input conflicts, the last PartialMap takes precedence.
73 set(  PartialMaps hhkbnav kbdctrl )
74
75 ##| MacroSets define extra capabilities that are not provided by the Scan or Output modules. Last MacroSet takes precedence.
76 set(    MacroSets retype )
77
78
79
80 ###
81 # Source Defines (in addition to the selected Modules)
82 #
83 set( MAIN_SRCS
84         main.c
85 )
86
87
88
89 ###
90 # Project Description
91 #
92
93 #| Project
94 project( kiibohd_controller )
95
96 #| Target Name (output name)
97 set( TARGET kiibohd )
98
99 #| General Settings
100 cmake_minimum_required( VERSION 2.8 )
101
102
103
104 ###
105 # Module Initialization / Compilation / Targets
106 #
107 include( Lib/CMake/modules.cmake )
108