Skip to content
Snippets Groups Projects
Select Git revision
  • f7bebb28f9b67863f4a19f1a62c3c6560c95a866
  • main default protected
  • blm_dev_chan
  • release/1.4.0 protected
  • widgets_draw
  • return_of_melodic_demo
  • task_cleanup
  • mixer2
  • dx/fb-save-restore
  • dx/dldldld
  • fpletz/flake
  • dx/jacksense-headset-mic-only
  • release/1.3.0 protected
  • fil3s-limit-filesize
  • allow-reloading-sunmenu
  • wifi-json-error-handling
  • app_text_viewer
  • shoegaze-fps
  • media_has_video_has_audio
  • fil3s-media
  • more-accurate-battery
  • v1.4.0
  • v1.3.0
  • v1.2.0
  • v1.2.0+rc1
  • v1.1.1
  • v1.1.0
  • v1.1.0+rc1
  • v1.0.0
  • v1.0.0+rc6
  • v1.0.0+rc5
  • v1.0.0+rc4
  • v1.0.0+rc3
  • v1.0.0+rc2
  • v1.0.0+rc1
35 results

micropython.cmake

Blame
  • micropython.cmake 535 B
    # If you want to add dependencies on other ESP-IDF modules, add them to
    # IDF_COMPONENTS in main/CMakeLists, as main/ is the component that the
    # usermodules are actually part of.
    
    add_library(usermod_badge23 INTERFACE)
    
    target_sources(usermod_badge23 INTERFACE
        ${CMAKE_CURRENT_LIST_DIR}/mp_hardware.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_synth.c
        ${CMAKE_CURRENT_LIST_DIR}/mp_kernel.c
    )
    
    target_include_directories(usermod_badge23 INTERFACE
        ${CMAKE_CURRENT_LIST_DIR}
    )
    
    target_link_libraries(usermod INTERFACE usermod_badge23)