2022-10-02 17:39:25 +01:00
|
|
|
project(aaruformattool)
|
|
|
|
|
|
2022-10-03 21:30:50 +01:00
|
|
|
find_package(ICU COMPONENTS uc REQUIRED)
|
2025-08-01 16:07:33 +01:00
|
|
|
find_package(Argtable3 CONFIG REQUIRED)
|
2022-10-03 21:30:50 +01:00
|
|
|
|
|
|
|
|
include_directories(${ICU_INCLUDE_DIRS})
|
|
|
|
|
|
2025-08-01 16:07:33 +01:00
|
|
|
add_executable(aaruformattool main.c version.h aaruformattool.h identify.c info.c helpers.c read.c printhex.c verify.c ecc_cd.c
|
2025-09-29 14:45:55 +01:00
|
|
|
commands.h commands.c usage.h usage.c compare.c cli_compare.c convert.c termbox2.h)
|
2025-08-01 16:07:33 +01:00
|
|
|
target_link_libraries(aaruformattool "aaruformat" argtable3::argtable3)
|
2022-10-03 21:30:50 +01:00
|
|
|
target_link_libraries(aaruformattool "aaruformat" ICU::uc)
|