~aleteoryx/muditaos

ref: sign_test muditaos/module-utils/unicode/utf8/CMakeLists.txt -rw-r--r-- 289 bytes
a217eeb3 — Dawid Wojtas [BH-2024] Fix lack of alarm directory after updating software 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
add_library(utf8 STATIC)

target_sources(utf8
    PRIVATE
        utf8/UTF8.cpp
)

target_include_directories(utf8
    PUBLIC
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
)

target_link_libraries(utf8 PRIVATE log-api log)

if (${ENABLE_TESTS})
    add_subdirectory(test)
endif()