Kiibohd Controller
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

setup.cmake 692B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ###| CMake Kiibohd Controller Muxed UART and USB Output Module |###
  2. #
  3. # Written by Jacob Alexander in 2014 for the Kiibohd Controller
  4. #
  5. # Released into the Public Domain
  6. #
  7. ###
  8. ###
  9. # Module C files
  10. #
  11. #| AVR Compiler
  12. if ( ${COMPILER_FAMILY} MATCHES "avr" )
  13. set( OUTPUT_SRCS
  14. )
  15. #| ARM Compiler
  16. elseif ( ${COMPILER_FAMILY} MATCHES "arm" )
  17. set( OUTPUT_SRCS
  18. output_com.c
  19. ../pjrcUSB/arm/usb_desc.c
  20. ../pjrcUSB/arm/usb_dev.c
  21. ../pjrcUSB/arm/usb_keyboard.c
  22. ../pjrcUSB/arm/usb_mem.c
  23. ../pjrcUSB/arm/usb_serial.c
  24. ../uartOut/arm/uart_serial.c
  25. )
  26. endif ()
  27. ###
  28. # Module Specific Options
  29. #
  30. ###
  31. # Compiler Family Compatibility
  32. #
  33. set( OutputModuleCompatibility
  34. arm
  35. # avr # TODO
  36. )