Implement info command in aaruformattool to dump all internal information from and image, and the library's context.

This commit is contained in:
2022-10-03 21:30:50 +01:00
parent 32e0f3f5bf
commit 1451a249a1
4 changed files with 552 additions and 2 deletions

View File

@@ -1,4 +1,8 @@
project(aaruformattool)
add_executable(aaruformattool main.c main.h aaruformattool.h identify.c)
target_link_libraries(aaruformattool "aaruformat")
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)