]> git.donarmstrong.com Git - kiibohd-controller.git/blobdiff - Output/uartOut/setup.cmake
Updating setup.cmake files to use Module hierarchy implicitly
[kiibohd-controller.git] / Output / uartOut / setup.cmake
index 66eec96cf77b27e75523d56e239e53d0ec80db05..17cc2784821eb24e76c1edc004458a0e06f70970 100644 (file)
@@ -1,6 +1,6 @@
 ###| CMake Kiibohd Controller UART Output Module |###
 #
-# Written by Jacob Alexander in 2014 for the Kiibohd Controller
+# Written by Jacob Alexander in 2014-2015 for the Kiibohd Controller
 #
 # Released into the Public Domain
 #
 # Module C files
 #
 
-
 #| AVR Compiler
 if ( ${COMPILER_FAMILY} MATCHES "avr" )
 
-       set( OUTPUT_SRCS
+       set ( Module_SRCS
                output_com.c
                avr/uart_serial.c
        )
@@ -23,7 +22,7 @@ if ( ${COMPILER_FAMILY} MATCHES "avr" )
 #| ARM Compiler
 elseif ( ${COMPILER_FAMILY} MATCHES "arm" )
 
-       set( OUTPUT_SRCS
+       set ( Module_SRCS
                output_com.c
                arm/uart_serial.c
        )
@@ -31,14 +30,10 @@ elseif ( ${COMPILER_FAMILY} MATCHES "arm" )
 endif ()
 
 
-###
-# Module Specific Options
-#
-
 ###
 # Compiler Family Compatibility
 #
-set( OutputModuleCompatibility
+set( ModuleCompatibility
        arm
 #      avr # TODO
 )