CMakeLists.txt 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. idf_component_register( SRC_DIRS . external ac101 tas57xx wm8978
  2. INCLUDE_DIRS . ac101
  3. PRIV_REQUIRES
  4. codecs
  5. newlib
  6. esp_common
  7. esp-dsp
  8. platform_config
  9. driver_bt
  10. services
  11. spotify
  12. raop
  13. display
  14. tools
  15. audio
  16. led_strip
  17. _override
  18. EMBED_FILES vu_s.data arrow.data
  19. )
  20. set_source_files_properties(mad.c pcm.c flac.c alac.c helix-aac.c vorbis.c opus.c
  21. PROPERTIES COMPILE_FLAGS
  22. -Wno-maybe-uninitialized
  23. )
  24. set_source_files_properties(wm8978/wm8978.c
  25. PROPERTIES COMPILE_FLAGS
  26. -Wno-unused-function
  27. )
  28. add_definitions(-DLINKALL -DLOOPBACK -DNO_FAAD -DEMBEDDED -DTREMOR_ONLY -DCUSTOM_VERSION=${BUILD_NUMBER})
  29. if (${DEPTH} EQUAL "32")
  30. add_definitions(-DBYTES_PER_FRAME=8)
  31. else()
  32. add_definitions(-DRESAMPLE16 -DBYTES_PER_FRAME=4)
  33. endif()
  34. if (NOT DEFINED AAC_DISABLED_SBR)
  35. add_definitions(-DAAC_ENABLE_SBR)
  36. endif()
  37. add_compile_options (-O3 )