~aleteoryx/muditaos

ref: 78728e18d8a273e7d47af27f0136d3d2d4e10c25 muditaos/module-bsp/board/rt1051/bellpx/CMakeLists.txt -rw-r--r-- 551 bytes
78728e18 — Lukasz Skrzypczak [BH-653] Added missing defines for pure 4 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
target_include_directories(
        module-bsp
    PUBLIC
        $<BUILD_INTERFACE:
            ${CMAKE_CURRENT_SOURCE_DIR}
        >
)

target_sources(
        module-bsp

    PRIVATE
        hal/temperature_source/TemperatureSource.cpp
        hal/battery_charger/BatteryCharger.cpp
	hal/key_input/KeyInput.cpp
	bsp/eink/eink_pin_config.cpp
        pin_mux.c
        clock_config.cpp
        irq_gpio.cpp
        debug_console.cpp


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