]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Output/usbMuxUart/setup.cmake
Fixing CMake dependency checking for kll_defs.h
[kiibohd-controller.git] / Output / usbMuxUart / setup.cmake
1 ###| CMake Kiibohd Controller Muxed UART and USB Output Module |###
2 #
3 # Written by Jacob Alexander in 2014-2015 for the Kiibohd Controller
4 #
5 # Released into the Public Domain
6 #
7 ###
8
9
10 ###
11 # Required Submodules
12 #
13
14 AddModule ( Output pjrcUSB )
15 AddModule ( Output uartOut )
16
17
18 ###
19 # Module C files
20 #
21
22 set( Module_SRCS
23         output_com.c
24 )
25
26 # Remove duplicate output_com.c files from pjrcUSB and uartOut
27 list ( REMOVE_ITEM Output_SRCS
28         Output/pjrcUSB/output_com.c
29         Output/uartOut/output_com.c
30 )
31
32
33 ###
34 # Compiler Family Compatibility
35 #
36 set( ModuleCompatibility
37         arm
38 #       avr # TODO
39 )
40