~aleteoryx/muditaos

ref: b996cff40c6b0b34dfd72ab1a5bf14561963005b muditaos/module-utils/bootconfig/CMakeLists.txt -rw-r--r-- 392 bytes
b996cff4 — Tomasz Langowski [EGD-5176] Documentation update for gui item and gridlayout 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cmake_minimum_required(VERSION 3.12)

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)