Omit the apps/avifgainmaputil/ include directory
All the C compilers I have worked with automatically search for headers
in the same directory where the source file resides. So it is redundant
to add that directory to target_include_directories().
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 83b24e5..be45725 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -739,7 +739,6 @@
endif()
endif()
set_target_properties(avifgainmaputil PROPERTIES LINKER_LANGUAGE "CXX")
- target_include_directories(avifgainmaputil PRIVATE apps/avifgainmaputil/)
target_link_libraries(avifgainmaputil libargparse avif_apps avif avif_enable_warnings)
if(NOT SKIP_INSTALL_APPS AND NOT SKIP_INSTALL_ALL)