~aleteoryx/muditaos

muditaos/module-bsp/hal/CMakeLists.txt -rw-r--r-- 561 bytes
a405cad6Aleteoryx trim readme 9 days 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
)