~aleteoryx/muditaos

ref: 1723f12895946e20558ba5ed1a9bc74d6151fc24 muditaos/module-bsp/hal/CMakeLists.txt -rw-r--r-- 561 bytes
1723f128 — Pawel Olejniczak [CP-1483] Add test for sync API 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
add_library(hal INTERFACE)

target_include_directories(hal
    INTERFACE
        $<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
)

target_sources(hal
    INTERFACE
        include/hal/temperature_source/TemperatureSource.hpp
        include/hal/GenericFactory.hpp
        include/hal/battery_charger/AbstractBatteryCharger.hpp
		include/hal/cellular/SIM.hpp
        include/hal/eink/AbstractEinkDisplay.hpp
        include/hal/key_input/RawKey.hpp
        include/hal/key_input/KeyEventDefinitions.hpp
        include/hal/key_input/AbstractKeyInput.hpp
)