You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
986 B

3 years ago
  1. set(embed_files "web/www/index_ov2640.html.gz"
  2. "web/www/index_ov3660.html.gz"
  3. "web/www/index_ov5640.html.gz"
  4. "web/www/monitor.html.gz")
  5. set(src_dirs
  6. ai
  7. camera
  8. lcd
  9. led
  10. button
  11. web
  12. trace
  13. imu)
  14. set(include_dirs
  15. ai
  16. camera
  17. lcd
  18. led
  19. button
  20. web
  21. trace
  22. imu)
  23. set(requires esp32-camera
  24. esp-dl
  25. bus
  26. screen
  27. esp_http_server
  28. nvs_flash
  29. mdns
  30. esp_adc_cal
  31. fb_gfx)
  32. idf_component_register(SRC_DIRS ${src_dirs} INCLUDE_DIRS ${include_dirs} REQUIRES ${requires} EMBED_FILES ${embed_files})
  33. component_compile_options(-ffast-math -O3)