2011-09-29 06:25:51 +00:00
|
|
|
###| CMAKE Kiibohd Controller Source Configurator |###
|
|
|
|
#
|
2014-03-22 21:32:06 +00:00
|
|
|
# Written by Jacob Alexander in 2011-2014 for the Kiibohd Controller
|
2011-09-29 06:25:51 +00:00
|
|
|
#
|
|
|
|
# Released into the Public Domain
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Project Modules
|
|
|
|
#
|
|
|
|
|
2011-09-29 22:30:24 +00:00
|
|
|
#| Note: This is the only section you probably want to modify
|
2011-09-29 06:25:51 +00:00
|
|
|
#| Each module is defined by it's own folder (e.g. Scan/Matrix represents the "Matrix" module)
|
|
|
|
#| All of the modules must be specified, as they generate the sources list of files to compile
|
|
|
|
#| Any modifications to this file will cause a complete rebuild of the project
|
|
|
|
|
2013-11-14 03:48:49 +00:00
|
|
|
#| Please look at the {Scan,Macro,USB,Debug}/module.txt for information on the modules and how to create new ones
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
##| Deals with acquiring the keypress information and turning it into a key index
|
2014-04-16 07:15:09 +00:00
|
|
|
set( ScanModule "DPH" )
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2014-04-06 18:49:27 +00:00
|
|
|
##| Provides the mapping functions for DefaultMap and handles any macro processing before sending to the OutputModule
|
|
|
|
set( MacroModule "PartialMap" )
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
##| Sends the current list of usb key codes through USB HID
|
2014-04-06 18:49:27 +00:00
|
|
|
set( OutputModule "pjrcUSB" )
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
##| Debugging source to use, each module has it's own set of defines that it sets
|
2014-04-06 18:49:27 +00:00
|
|
|
set( DebugModule "full" )
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-06 18:49:27 +00:00
|
|
|
###
|
|
|
|
# Keymap Configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
##| If there are multiple DefaultMaps, it is defined here. If, the specified DefaultMap is not found, defaultMap.h is used.
|
|
|
|
set( DefaultMap "kishsaver" )
|
|
|
|
|
|
|
|
##| PartialMap combined keymap layering. The first keymap has the "least" precedence.
|
|
|
|
set( CombinedMap colemak capslock2ctrl )
|
|
|
|
|
|
|
|
##| ParitalMaps available on top of the CombinedMap. If there are input conflicts, the last PartialMap takes precedence.
|
|
|
|
set( PartialMaps hhkbnav kbdctrl )
|
|
|
|
|
|
|
|
##| MacroSets define extra capabilities that are not provided by the Scan or Output modules. Last MacroSet takes precedence.
|
|
|
|
set( MacroSets retype )
|
|
|
|
|
2011-09-29 22:30:24 +00:00
|
|
|
|
2013-01-15 02:31:50 +00:00
|
|
|
###
|
|
|
|
# Module Overrides (Used in the buildall.bash script)
|
|
|
|
#
|
2013-02-02 02:19:31 +00:00
|
|
|
if ( ( DEFINED ScanModuleOverride ) AND ( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/Scan/${ScanModuleOverride} ) )
|
2013-01-15 02:31:50 +00:00
|
|
|
set( ScanModule ${ScanModuleOverride} )
|
2013-02-02 02:19:31 +00:00
|
|
|
endif ()
|
2013-01-15 02:31:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
###
|
|
|
|
# Path Setup
|
2014-01-20 00:40:36 +00:00
|
|
|
#
|
2014-03-22 21:32:06 +00:00
|
|
|
set( ScanModulePath "Scan/${ScanModule}" )
|
|
|
|
set( MacroModulePath "Macro/${MacroModule}" )
|
2014-01-20 00:40:36 +00:00
|
|
|
set( OutputModulePath "Output/${OutputModule}" )
|
2014-03-22 21:32:06 +00:00
|
|
|
set( DebugModulePath "Debug/${DebugModule}" )
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2011-09-29 22:30:24 +00:00
|
|
|
#| Top-level directory adjustment
|
2013-01-26 09:34:33 +00:00
|
|
|
set( HEAD_DIR "${CMAKE_CURRENT_SOURCE_DIR}" )
|
2011-09-29 22:30:24 +00:00
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
|
2013-01-30 23:13:49 +00:00
|
|
|
###
|
|
|
|
# Module Check Function
|
|
|
|
#
|
|
|
|
|
|
|
|
#| Usage:
|
|
|
|
#| PathPrepend( ModulePath <ListOfFamiliesSupported> )
|
|
|
|
#| Uses the ${COMPILER_FAMILY} variable
|
|
|
|
function( ModuleCompatibility ModulePath )
|
|
|
|
foreach( mod_var ${ARGN} )
|
|
|
|
if ( ${mod_var} STREQUAL ${COMPILER_FAMILY} )
|
|
|
|
# Module found, no need to scan further
|
|
|
|
return()
|
2013-02-02 04:35:12 +00:00
|
|
|
endif ()
|
|
|
|
endforeach()
|
2013-01-30 23:13:49 +00:00
|
|
|
|
|
|
|
message( FATAL_ERROR "${ModulePath} does not support the ${COMPILER_FAMILY} family..." )
|
2013-02-02 02:19:31 +00:00
|
|
|
endfunction()
|
2013-01-30 23:13:49 +00:00
|
|
|
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
# Module Configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
#| Additional options, usually define settings
|
|
|
|
add_definitions()
|
|
|
|
|
2011-09-29 22:30:24 +00:00
|
|
|
#| Include path for each of the modules
|
|
|
|
add_definitions(
|
|
|
|
-I${HEAD_DIR}/${ScanModulePath}
|
|
|
|
-I${HEAD_DIR}/${MacroModulePath}
|
2014-01-20 00:40:36 +00:00
|
|
|
-I${HEAD_DIR}/${OutputModulePath}
|
2011-09-29 22:30:24 +00:00
|
|
|
-I${HEAD_DIR}/${DebugModulePath}
|
|
|
|
)
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Module Processing
|
|
|
|
#
|
|
|
|
|
|
|
|
#| Go through lists of sources and append paths
|
|
|
|
#| Usage:
|
|
|
|
#| PathPrepend( OutputListOfSources <Prepend Path> <InputListOfSources> )
|
|
|
|
macro( PathPrepend Output SourcesPath )
|
|
|
|
unset( tmpSource )
|
|
|
|
|
|
|
|
# Loop through items
|
|
|
|
foreach( item ${ARGN} )
|
2011-11-13 10:04:44 +00:00
|
|
|
# Set the path
|
2011-09-29 06:25:51 +00:00
|
|
|
set( tmpSource ${tmpSource} "${SourcesPath}/${item}" )
|
2013-02-02 04:35:12 +00:00
|
|
|
endforeach()
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
# Finalize by writing the new list back over the old one
|
|
|
|
set( ${Output} ${tmpSource} )
|
2013-02-02 04:35:12 +00:00
|
|
|
endmacro()
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
#| Scan Module
|
2011-09-29 22:30:24 +00:00
|
|
|
include ( "${ScanModulePath}/setup.cmake" )
|
|
|
|
PathPrepend( SCAN_SRCS ${ScanModulePath} ${SCAN_SRCS} )
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
#| Macro Module
|
2011-09-29 22:30:24 +00:00
|
|
|
include ( "${MacroModulePath}/setup.cmake" )
|
2011-09-29 06:25:51 +00:00
|
|
|
PathPrepend( MACRO_SRCS ${MacroModulePath} ${MACRO_SRCS} )
|
|
|
|
|
2014-01-20 00:40:36 +00:00
|
|
|
#| Output Module
|
|
|
|
include ( "${OutputModulePath}/setup.cmake" )
|
|
|
|
PathPrepend( OUTPUT_SRCS ${OutputModulePath} ${OUTPUT_SRCS} )
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
#| Debugging Module
|
2011-09-29 22:30:24 +00:00
|
|
|
include ( "${DebugModulePath}/setup.cmake" )
|
2011-09-29 06:25:51 +00:00
|
|
|
PathPrepend( DEBUG_SRCS ${DebugModulePath} ${DEBUG_SRCS} )
|
|
|
|
|
|
|
|
|
2014-04-06 18:49:27 +00:00
|
|
|
#| Default Map
|
|
|
|
# TODO Add support for different defaultMaps
|
|
|
|
configure_file( "${ScanModulePath}/defaultMap.h" defaultMap.h )
|
|
|
|
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
#| Print list of all module sources
|
2011-10-01 07:54:18 +00:00
|
|
|
message( STATUS "Detected Scan Module Source Files:" )
|
|
|
|
message( "${SCAN_SRCS}" )
|
|
|
|
message( STATUS "Detected Macro Module Source Files:" )
|
|
|
|
message( "${MACRO_SRCS}" )
|
2014-03-22 21:32:06 +00:00
|
|
|
message( STATUS "Detected Output Module Source Files:" )
|
2014-01-20 00:40:36 +00:00
|
|
|
message( "${OUTPUT_SRCS}" )
|
2011-10-01 07:54:18 +00:00
|
|
|
message( STATUS "Detected Debug Module Source Files:" )
|
|
|
|
message( "${DEBUG_SRCS}" )
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2013-02-02 01:02:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
# Generate USB Defines
|
|
|
|
#
|
|
|
|
|
|
|
|
#| Manufacturer name
|
|
|
|
set( MANUFACTURER "Kiibohd" )
|
|
|
|
|
|
|
|
|
|
|
|
#| Serial Number
|
|
|
|
#| Attempt to call Git to get the branch, last commit date, and whether code modified since last commit
|
|
|
|
|
|
|
|
#| Modified
|
2013-02-02 04:35:12 +00:00
|
|
|
#| Takes a bit of work to extract the "M " using CMake, and not using it if there are no modifications
|
2013-02-02 01:02:55 +00:00
|
|
|
execute_process( COMMAND git status -s -uno --porcelain
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE Git_Modified_INFO
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
string( LENGTH "${Git_Modified_INFO}" Git_Modified_LENGTH )
|
2014-01-23 10:01:12 +00:00
|
|
|
set( Git_Modified_Status "Clean" )
|
2013-02-02 01:02:55 +00:00
|
|
|
if ( ${Git_Modified_LENGTH} GREATER 2 )
|
|
|
|
string( SUBSTRING "${Git_Modified_INFO}" 1 2 Git_Modified_Flag_INFO )
|
2014-01-23 10:01:12 +00:00
|
|
|
set( Git_Modified_Status "Dirty" )
|
2013-02-02 02:19:31 +00:00
|
|
|
endif ()
|
2013-02-02 01:02:55 +00:00
|
|
|
|
|
|
|
#| Branch
|
|
|
|
execute_process( COMMAND git rev-parse --abbrev-ref HEAD
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE Git_Branch_INFO
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
|
|
|
|
#| Date
|
|
|
|
execute_process( COMMAND git show -s --format=%ci
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE Git_Date_INFO
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
|
2014-01-23 10:01:12 +00:00
|
|
|
#| Commit Author and Email
|
|
|
|
execute_process( COMMAND git show -s --format="%cn <%ce>"
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE Git_Commit_Author
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
|
|
|
|
#| Commit Revision
|
|
|
|
execute_process( COMMAND git show -s --format=%H
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE Git_Commit_Revision
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
|
|
|
|
#| Origin URL
|
|
|
|
execute_process( COMMAND git config --get remote.origin.url
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE Git_Origin_URL
|
|
|
|
ERROR_QUIET
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
|
2014-04-10 03:06:19 +00:00
|
|
|
#| Build Date
|
|
|
|
execute_process( COMMAND "date" "+%Y-%m-%d %T %z"
|
2014-04-13 03:52:32 +00:00
|
|
|
OUTPUT_VARIABLE Build_Date
|
|
|
|
ERROR_QUIET
|
2014-04-10 03:06:19 +00:00
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
2013-02-02 01:02:55 +00:00
|
|
|
|
2014-04-10 03:06:19 +00:00
|
|
|
#| Last Commit Date
|
2014-04-13 03:52:32 +00:00
|
|
|
set( GitLastCommitDate "${Git_Modified_Status} ${Git_Branch_INFO} - ${Git_Date_INFO}" )
|
2013-02-02 01:02:55 +00:00
|
|
|
|
|
|
|
#| Uses CMake variables to include as defines
|
|
|
|
#| Primarily for USB configuration
|
|
|
|
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/Lib/_buildvars.h buildvars.h )
|
|
|
|
|