]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Scan/BETKB/setup.cmake
Initial commit of the Burroughs Ergonomic Terminal Keyboard module (BETKB)
[kiibohd-controller.git] / Scan / BETKB / setup.cmake
1 ###| CMake Kiibohd Controller Scan Module |###
2 #
3 # Written by Jacob Alexander in 2011 for the Kiibohd Controller
4 #
5 # Released into the Public Domain
6 #
7 # For the Burroughs/Kokusai BETKB (Burroughs Ergonomic Terminal Keyboard)
8 #
9 ###
10
11
12 ###
13 # Module C files
14 #
15
16 set( SCAN_SRCS
17         scan_loop.c
18 )
19
20
21 ###
22 # Module H files
23 #
24 set( SCAN_HDRS
25         scan_loop.h
26 )
27
28
29 ###
30 # File Dependency Setup
31 #
32 ADD_FILE_DEPENDENCIES( scan_loop.c ${SCAN_HDRS} )
33 #add_file_dependencies( scan_loop.c ${SCAN_HDRS} )
34 #add_file_dependencies( macro.c keymap.h microswitch8304.h )
35
36
37 ###
38 # Module Specific Options
39 #
40 add_definitions( -I${HEAD_DIR}/Keymap )
41
42 #| Keymap Settings
43 add_definitions(
44         -DMODIFIER_MASK=betkb_ModifierMask
45         -DKEYINDEX_MASK=betkb_ColemakMap
46         #-DKEYINDEX_MASK=betkb_DefaultMap
47 )
48