Files
libaaruformat/tool/CMakeLists.txt

9 lines
258 B
CMake
Raw Normal View History

project(aaruformattool)
find_package(ICU COMPONENTS uc REQUIRED)
include_directories(${ICU_INCLUDE_DIRS})
2022-10-04 19:44:34 +01:00
add_executable(aaruformattool main.c main.h aaruformattool.h identify.c info.c helpers.c)
target_link_libraries(aaruformattool "aaruformat" ICU::uc)