Files
libaaruformat/tool/CMakeLists.txt

9 lines
294 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 helpers.c read.c printhex.c verify.c ecc_cd.c)
target_link_libraries(aaruformattool "aaruformat" ICU::uc)