~aleteoryx/muditaos

ref: 60c7810bec56effb848256c94155defa9a732ee5 muditaos/module-bsp/board/rt1051/bellpx/CMakeLists.txt -rw-r--r-- 903 bytes
60c7810b — patrycja-paczkowska [MOS-664] PLAY label translation fix 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
target_include_directories(
        module-bsp
    PUBLIC
        $<BUILD_INTERFACE:
            ${CMAKE_CURRENT_SOURCE_DIR}
        >
)

target_sources(
        module-bsp

    PRIVATE
        hal/battery_charger/BatteryCharger.cpp
        hal/key_input/KeyInput.cpp
        hal/temperature_source/TemperatureSource.cpp

        bsp/audio/AW8898driver.cpp
        bsp/audio/CodecAW8898.cpp

        bsp/bell_temp_sensor/bell_temp_sensor.cpp
        bsp/eink/eink_pin_config.cpp
        bsp/lpm/PowerProfile.cpp
        bsp/lpm/RT1051LPM.cpp
        bsp/rotary_encoder/rotary_encoder.cpp
        bsp/rtc/rtc_configuration.cpp
        bsp/switches/switches.cpp

        audio.cpp
        clock_config.cpp
        debug_console.cpp
        irq_gpio.cpp
        pin_mux.c
        board.cpp

    PUBLIC
        eink-config.h
        board/pin_mux.h
        board/clock_config.h
        board/irq_gpio.hpp
)