mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-28 19:12:23 -04:00
Split module-utils into smaller components for better dependency management. Fix many dependencies throughout the project. Signed-off-by: Marcin Smoczyński <smoczynski.marcin@gmail.com>
11 lines
163 B
CMake
11 lines
163 B
CMake
add_library(utils-unicode INTERFACE)
|
|
|
|
add_subdirectory(ucs2)
|
|
add_subdirectory(utf8)
|
|
|
|
target_link_libraries(utils-unicode
|
|
INTERFACE
|
|
ucs2
|
|
utf8
|
|
)
|