~aleteoryx/muditaos

ref: 87ed83ca5ce1209cd4591fc58d16e441928b147c muditaos/module-utils/bootconfig/CMakeLists.txt -rw-r--r-- 446 bytes
87ed83ca — Mateusz Grzegorzek [BH-701] Use TimeSetFmtSpinner in Alarm app 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
project( utils-bootconfig VERSION 1.0
        DESCRIPTION "Library for processing boot config"
)

set ( SOURCES
    src/bootconfig.cpp
)

set( INCLUDES
    include
)

add_library( ${PROJECT_NAME} STATIC ${SOURCES} )

target_include_directories( ${PROJECT_NAME} PUBLIC ${INCLUDES} )

target_link_libraries( ${PROJECT_NAME}
   PRIVATE
      module-utils
      module-vfs
      hash-library::hash-library
      Microsoft.GSL::GSL
      json::json
)