Add snippet tool to interact with AaruFormat images.

This commit is contained in:
2022-10-02 17:39:25 +01:00
parent a610610f66
commit 39a5fb0b23
6 changed files with 191 additions and 1 deletions

View File

@@ -157,4 +157,12 @@ endif()
include_directories(include 3rdparty/uthash/src)
add_subdirectory(tests)
include(CheckLibraryExists)
check_library_exists(m log "" HAVE_LIB_M)
if(HAVE_LIB_M)
TARGET_LINK_LIBRARIES_WHOLE_ARCHIVE(aaruformat m)
endif()
add_subdirectory(tests)
add_subdirectory(tool)