~aleteoryx/muditaos

ref: 457e9b4fc823fd07f6831828fc9cbacf8847f2e8 muditaos/module-utils/bootconfig/CMakeLists.txt -rw-r--r-- 392 bytes
457e9b4f — Alek Rudnik [EGD-3542] Fix issue with sending text messages form new message window 4 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)