mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 19:24:40 +00:00
9 lines
248 B
CMake
9 lines
248 B
CMake
project(aaruformattool)
|
|
|
|
find_package(ICU COMPONENTS uc REQUIRED)
|
|
|
|
include_directories(${ICU_INCLUDE_DIRS})
|
|
|
|
add_executable(aaruformattool main.c main.h aaruformattool.h identify.c info.c)
|
|
target_link_libraries(aaruformattool "aaruformat" ICU::uc)
|