view Output/usbMuxUart/setup.cmake @ 300:7119c2149abb

Fixing compiler errors for usbMuxUart Output module - Removing (currently) redundant usbMuxUart capabilities.kll file - Issues were due to the recent AddModule cmake function addition
author Jacob Alexander <haata@kiibohd.com>
date Fri, 06 Mar 2015 23:37:09 -0800
parents 5b66d1da5377
children a6bafeb5fecf
line wrap: on
line source

###| CMake Kiibohd Controller Muxed UART and USB Output Module |###
#
# Written by Jacob Alexander in 2014-2015 for the Kiibohd Controller
#
# Released into the Public Domain
#
###


###
# Required Submodules
#

AddModule ( Output pjrcUSB )
AddModule ( Output uartOut )


###
# Module C files
#

set( Module_SRCS
	output_com.c
)

# Remove duplicate output_com.c files from pjrcUSB and uartOut
list ( REMOVE_ITEM Output_SRCS
	Output/pjrcUSB/output_com.c
	Output/uartOut/output_com.c
)


###
# Compiler Family Compatibility
#
set( ModuleCompatibility
	arm
#	avr # TODO
)