mirror of
https://github.com/libgit2/libgit2.git
synced 2026-01-25 11:06:32 +00:00
xdiff is a dependency (from git core) and more properly belongs in the 'deps' directory. Move it there, and add a stub for cmake to resolve xdiff from the system location in the future. (At present, bundled xdiff remains hardcoded.)
10 lines
439 B
CMake
10 lines
439 B
CMake
# Optional external dependency: xdiff
|
|
if(USE_XDIFF STREQUAL "system")
|
|
message(FATAL_ERROR "external/system xdiff is not yet supported")
|
|
else()
|
|
add_subdirectory("${PROJECT_SOURCE_DIR}/deps/xdiff" "${PROJECT_BINARY_DIR}/deps/xdiff")
|
|
list(APPEND LIBGIT2_DEPENDENCY_INCLUDES "${PROJECT_SOURCE_DIR}/deps/xdiff")
|
|
list(APPEND LIBGIT2_DEPENDENCY_OBJECTS "$<TARGET_OBJECTS:xdiff>")
|
|
add_feature_info(xdiff ON "xdiff support (bundled)")
|
|
endif()
|