Kiibohd Controller
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.

setup.cmake 812B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ###| CMake Kiibohd Controller Scan Module |###
  2. #
  3. # Written by Jacob Alexander in 2013 for the Kiibohd Controller
  4. #
  5. # Released into the Public Domain
  6. #
  7. # For the Sanyo MBC-55X Series of keyboards
  8. #
  9. ###
  10. ###
  11. # Module C files
  12. #
  13. set( SCAN_SRCS
  14. scan_loop.c
  15. )
  16. ###
  17. # Module H files
  18. #
  19. set( SCAN_HDRS
  20. scan_loop.h
  21. )
  22. ###
  23. # File Dependency Setup
  24. #
  25. ADD_FILE_DEPENDENCIES( scan_loop.c ${SCAN_HDRS} )
  26. #add_file_dependencies( scan_loop.c ${SCAN_HDRS} )
  27. #add_file_dependencies( macro.c keymap.h facom6684.h )
  28. ###
  29. # Module Specific Options
  30. #
  31. add_definitions( -I${HEAD_DIR}/Keymap )
  32. #| Keymap Settings
  33. add_definitions(
  34. -DMODIFIER_MASK=facom6684_ModifierMask
  35. #-DKEYINDEX_MASK=facom6684_ColemakMap
  36. -DKEYINDEX_MASK=facom6684_DefaultMap
  37. )
  38. ###
  39. # Compiler Family Compatibility
  40. #
  41. set( ScanModuleCompatibility
  42. arm
  43. avr
  44. )