Check if there is an identical file before saving.

This commit is contained in:
Skyth
2024-09-18 16:04:52 +03:00
parent 182b9a5060
commit 55a551362b
4 changed files with 42 additions and 8 deletions

View File

@@ -16,7 +16,14 @@ FetchContent_Declare(
GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git
GIT_TAG v3.4.0
)
FetchContent_Declare(
xxHash
GIT_REPOSITORY https://github.com/Cyan4973/xxHash.git
GIT_TAG v0.8.2
SOURCE_SUBDIR "cmake_unofficial"
)
FetchContent_MakeAvailable(tomlplusplus)
FetchContent_MakeAvailable(xxHash)
add_subdirectory(${THIRDPARTY_ROOT}/disasm)