Archived
1
0

Updating setup.cmake files to use Module hierarchy implicitly

- Added AddModule CMake function which simplifies specifying module requirements
This commit is contained in:
Jacob Alexander 2015-01-25 17:53:48 -08:00
parent c9b1769608
commit 1e9f55a0bf
16 changed files with 125 additions and 349 deletions

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller Debug Module |### ###| CMake Kiibohd Controller Debug 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 # Released into the Public Domain
# #
@ -11,31 +11,15 @@
# Module C files # Module C files
# #
set( DEBUG_SRCS set ( Module_SRCS
cli.c cli.c
) )
###
# Setup File Dependencies
#
###
# Module Specific Options
#
###
# Just in case, you only want this module and are using others as well
#
add_definitions( -I${HEAD_DIR}/Debug/off )
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( DebugModuleCompatibility set ( ModuleCompatibility
arm arm
avr avr
) )

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller Debug Module |### ###| CMake Kiibohd Controller Debug Module |###
# #
# Written by Jacob Alexander in 2011-2014 for the Kiibohd Controller # Written by Jacob Alexander in 2011-2015 for the Kiibohd Controller
# #
# Released into the Public Domain # Released into the Public Domain
# #
@ -8,31 +8,18 @@
### ###
# Module C files # Required Submodules
# #
#| XXX Requires the ../ due to how the paths are constructed AddModule ( Debug cli )
set( DEBUG_SRCS AddModule ( Debug led )
../cli/cli.c AddModule ( Debug print )
../led/led.c
../print/print.c
)
###
# Module Specific Options
#
add_definitions(
-I${HEAD_DIR}/Debug/cli
-I${HEAD_DIR}/Debug/led
-I${HEAD_DIR}/Debug/print
)
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( DebugModuleCompatibility set ( ModuleCompatibility
arm arm
avr avr
) )

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller Debug Module |### ###| CMake Kiibohd Controller Debug Module |###
# #
# Written by Jacob Alexander in 2011,2014 for the Kiibohd Controller # Written by Jacob Alexander in 2011-2015 for the Kiibohd Controller
# #
# Released into the Public Domain # Released into the Public Domain
# #
@ -11,26 +11,15 @@
# Module C files # Module C files
# #
set( DEBUG_SRCS set ( Module_SRCS
led.c led.c
) )
###
# Module Specific Options
#
###
# Just in case, you only want this module and are using others as well
#
add_definitions( -I${HEAD_DIR}/Debug/off )
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( DebugModuleCompatibility set ( ModuleCompatibility
arm arm
avr avr
) )

View File

@ -1,30 +0,0 @@
/* Copyright (C) 2011 by Jacob Alexander
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef __led_h
#define __led_h
// ----- Disabler Defines -----
#define init_errorLED()
#define errorLED(on)
#endif

View File

@ -1,70 +0,0 @@
/* Copyright (C) 2011 by Jacob Alexander
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef print_h__
#define print_h__
// ----- Disabler Defines -----
#define dPrint(c)
#define dPrintStr(c)
#define dPrintStrs(...)
#define dPrintStrNL(c)
#define dPrintStrsNL(...)
// Special Msg Constructs (Uses VT100 tags)
#define dPrintMsg(colour_code_str,msg,...)
#define printMsg(colour_code_str,msg,str)
// Info Messages
#define info_dPrint(...)
#define info_print(str)
// Warning Messages
#define warn_dPrint(...)
#define warn_print(str)
// Error Messages
#define erro_dPrint(...)
#define erro_print(str)
// Debug Messages
#define dbug_dPrint(...)
#define dbug_print(str)
// Static String Printing
#define print(s) _print(PSTR(s))
// Output Functions
#define _print(s)
#define usb_debug_putstr(s)
#define usb_debug_putstrs(s, ...)
// String Functions
#define hexToStr(hex, out)
#define int8ToStr(in, out)
#define int16ToStr(in, out)
#define hexToStr_op(in, out, op)
#define revsStr(in)
#define lenStr(in)
#endif

View File

@ -1,28 +0,0 @@
###| CMake Kiibohd Controller Debug Module |###
#
# Written by Jacob Alexander in 2011 for the Kiibohd Controller
#
# Released into the Public Domain
#
###
###
# Module C files
#
#| None!
###
# Module Specific Options
#
###
# Compiler Family Compatibility
#
set( DebugModuleCompatibility
arm
avr
)

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller Debug Module |### ###| CMake Kiibohd Controller Debug Module |###
# #
# Written by Jacob Alexander in 2011,2014 for the Kiibohd Controller # Written by Jacob Alexander in 2011-2015 for the Kiibohd Controller
# #
# Released into the Public Domain # Released into the Public Domain
# #
@ -11,26 +11,15 @@
# Module C files # Module C files
# #
set( DEBUG_SRCS set ( Module_SRCS
print.c print.c
) )
###
# Module Specific Options
#
###
# Just in case, you only want this module and are using others as well
#
add_definitions( -I${HEAD_DIR}/Debug/off )
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( DebugModuleCompatibility set ( ModuleCompatibility
arm arm
avr avr
) )

View File

@ -24,6 +24,7 @@ endif ()
### ###
# Path Setup # Path Setup
# #
@ -41,9 +42,6 @@ set( HEAD_DIR "${CMAKE_CURRENT_SOURCE_DIR}" )
# Module Check Function # Module Check Function
# #
#| Usage:
#| PathPrepend( ModulePath <ListOfFamiliesSupported> )
#| Uses the ${COMPILER_FAMILY} variable
function ( ModuleCompatibility ModulePath ) function ( ModuleCompatibility ModulePath )
foreach ( mod_var ${ARGN} ) foreach ( mod_var ${ARGN} )
if ( ${mod_var} STREQUAL ${COMPILER_FAMILY} ) if ( ${mod_var} STREQUAL ${COMPILER_FAMILY} )
@ -57,23 +55,6 @@ endfunction()
###
# Module Configuration
#
#| Additional options, usually define settings
add_definitions()
#| Include path for each of the modules
add_definitions(
-I${HEAD_DIR}/${ScanModulePath}
-I${HEAD_DIR}/${MacroModulePath}
-I${HEAD_DIR}/${OutputModulePath}
-I${HEAD_DIR}/${DebugModulePath}
)
### ###
# Module Processing # Module Processing
# #
@ -95,32 +76,64 @@ macro( PathPrepend Output SourcesPath )
endmacro () endmacro ()
#| Scan Module
include ( "${ScanModulePath}/setup.cmake" )
PathPrepend( SCAN_SRCS ${ScanModulePath} ${SCAN_SRCS} )
#| Macro Module ###
include ( "${MacroModulePath}/setup.cmake" ) # Add Module Macro
PathPrepend( MACRO_SRCS ${MacroModulePath} ${MACRO_SRCS} ) #
# Optional Arg 1: Main Module Check, set to True/1 if adding a main module
#| Output Module function ( AddModule ModuleType ModuleName )
include ( "${OutputModulePath}/setup.cmake" ) # Module path
PathPrepend( OUTPUT_SRCS ${OutputModulePath} ${OUTPUT_SRCS} ) set ( ModulePath ${ModuleType}/${ModuleName} )
set ( ModuleFullPath ${HEAD_DIR}/${ModuleType}/${ModuleName} )
#| Debugging Module # Include setup.cmake file
include ( "${DebugModulePath}/setup.cmake" ) include ( ${ModuleFullPath}/setup.cmake )
PathPrepend( DEBUG_SRCS ${DebugModulePath} ${DEBUG_SRCS} )
# Check if this is a main module add
foreach ( extraArg ${ARGN} )
# Make sure this isn't a submodule
if ( DEFINED SubModule )
message ( FATAL_ERROR
"The '${ModuleName}' module is not a stand-alone module, and requires further setup."
)
endif ()
endforeach ()
# PathPrepend to give proper paths to each of the source files
PathPrepend ( Module_SRCS ${ModulePath} ${Module_SRCS} )
# Check the current scope to see if a sub-module added some source files
set ( Module_SRCS ${${ModuleType}_SRCS} ${Module_SRCS} )
# Append each of the sources to each type of module srcs list
set ( ${ModuleType}_SRCS ${Module_SRCS} )
# Add .h files
add_definitions ( -I${ModuleFullPath} )
# Check module compatibility
ModuleCompatibility( ${ModulePath} ${ModuleCompatibility} )
# Check if this is a main module add
foreach ( extraArg ${ARGN} )
# Display detected source files
if ( NOT DEFINED SubModule )
message ( STATUS "Detected ${ModuleType} Module Source Files:" )
message ( "${${ModuleType}_SRCS}" )
endif ()
endforeach ()
# Finally, add the sources to the parent scope (i.e. return)
set ( ${ModuleType}_SRCS ${${ModuleType}_SRCS} PARENT_SCOPE )
endfunction ()
#| Print list of all module sources #| Add main modules
message( STATUS "Detected Scan Module Source Files:" ) AddModule ( Scan ${ScanModule} 1 )
message( "${SCAN_SRCS}" ) AddModule ( Macro ${MacroModule} 1 )
message( STATUS "Detected Macro Module Source Files:" ) AddModule ( Output ${OutputModule} 1 )
message( "${MACRO_SRCS}" ) AddModule ( Debug ${DebugModule} 1 )
message( STATUS "Detected Output Module Source Files:" )
message( "${OUTPUT_SRCS}" )
message( STATUS "Detected Debug Module Source Files:" )
message( "${DEBUG_SRCS}" )
@ -220,10 +233,10 @@ configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/Lib/_buildvars.h buildvars.h )
set( SRCS set( SRCS
${MAIN_SRCS} ${MAIN_SRCS}
${COMPILER_SRCS} ${COMPILER_SRCS}
${SCAN_SRCS} ${Scan_SRCS}
${MACRO_SRCS} ${Macro_SRCS}
${OUTPUT_SRCS} ${Output_SRCS}
${DEBUG_SRCS} ${Debug_SRCS}
) )
#| Directories to include by default #| Directories to include by default
@ -231,18 +244,6 @@ include_directories( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} )
###
# Module Compatibility Check
#
#| Check for whether the set modules are compatible with the specified compiler family
ModuleCompatibility( ${ScanModulePath} ${ScanModuleCompatibility} )
ModuleCompatibility( ${MacroModulePath} ${MacroModuleCompatibility} )
ModuleCompatibility( ${OutputModulePath} ${OutputModuleCompatibility} )
ModuleCompatibility( ${DebugModulePath} ${DebugModuleCompatibility} )
### ###
# ctag Generation # ctag Generation
# #

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller Macro Module |### ###| CMake Kiibohd Controller Macro 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 # Released into the Public Domain
# #
@ -11,20 +11,15 @@
# Module C files # Module C files
# #
set( MACRO_SRCS set ( Module_SRCS
macro.c macro.c
) )
###
# Module Specific Options
#
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( MacroModuleCompatibility set ( ModuleCompatibility
arm arm
avr avr
) )

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller USB Module |### ###| CMake Kiibohd Controller USB Module |###
# #
# Written by Jacob Alexander in 2011-2013 for the Kiibohd Controller # Written by Jacob Alexander in 2011-2015 for the Kiibohd Controller
# #
# Released into the Public Domain # Released into the Public Domain
# #
@ -11,11 +11,10 @@
# Module C files # Module C files
# #
#| AVR Compiler #| AVR Compiler
if ( ${COMPILER_FAMILY} MATCHES "avr" ) if ( ${COMPILER_FAMILY} MATCHES "avr" )
set( OUTPUT_SRCS set ( Module_SRCS
output_com.c output_com.c
avr/usb_keyboard_serial.c avr/usb_keyboard_serial.c
) )
@ -23,7 +22,7 @@ if ( ${COMPILER_FAMILY} MATCHES "avr" )
#| ARM Compiler #| ARM Compiler
elseif ( ${COMPILER_FAMILY} MATCHES "arm" ) elseif ( ${COMPILER_FAMILY} MATCHES "arm" )
set( OUTPUT_SRCS set ( Module_SRCS
output_com.c output_com.c
arm/usb_desc.c arm/usb_desc.c
arm/usb_dev.c arm/usb_dev.c
@ -35,14 +34,10 @@ elseif ( ${COMPILER_FAMILY} MATCHES "arm" )
endif ( ${COMPILER_FAMILY} MATCHES "avr" ) endif ( ${COMPILER_FAMILY} MATCHES "avr" )
###
# Module Specific Options
#
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( OutputModuleCompatibility set( ModuleCompatibility
arm arm
avr avr
) )

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2014 by Jacob Alexander /* Copyright (C) 2014-2015 by Jacob Alexander
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller UART Output Module |### ###| 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 # Released into the Public Domain
# #
@ -11,11 +11,10 @@
# Module C files # Module C files
# #
#| AVR Compiler #| AVR Compiler
if ( ${COMPILER_FAMILY} MATCHES "avr" ) if ( ${COMPILER_FAMILY} MATCHES "avr" )
set( OUTPUT_SRCS set ( Module_SRCS
output_com.c output_com.c
avr/uart_serial.c avr/uart_serial.c
) )
@ -23,7 +22,7 @@ if ( ${COMPILER_FAMILY} MATCHES "avr" )
#| ARM Compiler #| ARM Compiler
elseif ( ${COMPILER_FAMILY} MATCHES "arm" ) elseif ( ${COMPILER_FAMILY} MATCHES "arm" )
set( OUTPUT_SRCS set ( Module_SRCS
output_com.c output_com.c
arm/uart_serial.c arm/uart_serial.c
) )
@ -31,14 +30,10 @@ elseif ( ${COMPILER_FAMILY} MATCHES "arm" )
endif () endif ()
###
# Module Specific Options
#
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( OutputModuleCompatibility set( ModuleCompatibility
arm arm
# avr # TODO # avr # TODO
) )

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller Muxed UART and USB Output Module |### ###| CMake Kiibohd Controller Muxed UART and USB 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 # Released into the Public Domain
# #
@ -8,43 +8,26 @@
### ###
# Module C files # Required Submodules
# #
AddModule ( Output pjrcUSB )
#| AVR Compiler AddModule ( Output uartOut )
if ( ${COMPILER_FAMILY} MATCHES "avr" )
set( OUTPUT_SRCS
)
#| ARM Compiler
elseif ( ${COMPILER_FAMILY} MATCHES "arm" )
set( OUTPUT_SRCS
output_com.c
../pjrcUSB/arm/usb_desc.c
../pjrcUSB/arm/usb_dev.c
../pjrcUSB/arm/usb_keyboard.c
../pjrcUSB/arm/usb_mem.c
../pjrcUSB/arm/usb_serial.c
../uartOut/arm/uart_serial.c
)
endif ()
### ###
# Module Specific Options # Module C files
# #
set( Module_SRCS
output_com.c
)
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( OutputModuleCompatibility set( ModuleCompatibility
arm arm
# avr # TODO # avr # TODO
) )

View File

@ -1,6 +1,6 @@
###| CMake Kiibohd Controller Scan Module |### ###| CMake Kiibohd Controller Scan Module |###
# #
# Written by Jacob Alexander in 2013-2014 for the Kiibohd Controller # Written by Jacob Alexander in 2013-2015 for the Kiibohd Controller
# #
# Released into the Public Domain # Released into the Public Domain
# #
@ -10,21 +10,15 @@
### ###
# Module C files # Module C files
# #
set ( Module_SRCS
set( SCAN_SRCS
scan_loop.c scan_loop.c
) )
###
# Module Specific Options
#
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( ScanModuleCompatibility set ( ModuleCompatibility
avr avr
) )

View File

@ -8,27 +8,25 @@
### ###
# Module C files # Required Submodules
# #
set( SCAN_SRCS AddModule ( Scan MatrixARM )
scan_loop.c
../MatrixARM/matrix_scan.c
)
### ###
# Module Specific Options # Module C files
# #
add_definitions(
-I${HEAD_DIR}/Scan/MatrixARM set ( Module_SRCS
scan_loop.c
) )
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( ScanModuleCompatibility set ( ModuleCompatibility
arm arm
) )

View File

@ -1,36 +1,30 @@
###| CMake Kiibohd Controller Scan Module |### ###| CMake Kiibohd Controller Scan 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 # Released into the Public Domain
# #
### ###
### ###
# Warning, that this module is not meant to be built stand-alone # Sub-module flag, cannot be included stand-alone
# #
message( FATAL_ERROR set ( SubModule 1 )
"The 'MatrixARM' module is not a stand-alone module, and requires further setup."
)
### ###
# Module C files # Module C files
# #
set ( Module_SRCS
set( SCAN_SRCS
matrix_scan.c matrix_scan.c
) )
###
# Module Specific Options
#
### ###
# Compiler Family Compatibility # Compiler Family Compatibility
# #
set( ScanModuleCompatibility set ( ModuleCompatibility
arm arm
) )