Kiibohd Controller
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ce dépôt est archivé. Vous pouvez voir les fichiers et le cloner, mais vous ne pouvez pas pousser ni ouvrir de ticket/demande d'ajout.

setup.cmake 664B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ###| CMake Kiibohd Controller Macro Module |###
  2. #
  3. # Written by Jacob Alexander in 2011 for the Kiibohd Controller
  4. #
  5. # Released into the Public Domain
  6. #
  7. ###
  8. ###
  9. # Warning, module has known speed issues on non-matrix designs
  10. # Has not been tested in a long time
  11. #
  12. message( AUTHOR_WARNING
  13. "The 'basic' macro module was originally designed for matrix scanning designs,
  14. it was found not to be scalable with NKRO keyboard converters.
  15. It has also not been tested in a long time, use at your own risk."
  16. )
  17. ###
  18. # Module C files
  19. #
  20. set( MACRO_SRCS
  21. macro.c
  22. )
  23. ###
  24. # Module Specific Options
  25. #
  26. ###
  27. # Compiler Family Compatibility
  28. #
  29. set( MacroModuleCompatibility
  30. avr
  31. )