Bump deps/HDiffPatch from eae33ca to 492b1b7 (#166)

* Bump deps/HDiffPatch from `eae33ca` to `492b1b7`

Bumps [deps/HDiffPatch](https://github.com/sisong/HDiffPatch) from `eae33ca` to `492b1b7`.
- [Release notes](https://github.com/sisong/HDiffPatch/releases)
- [Commits](eae33ca58a...492b1b7a82)

---
updated-dependencies:
- dependency-name: deps/HDiffPatch
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix comp

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: FutureRave <edoardo.sanguineti222@gmail.com>
This commit is contained in:
dependabot[bot] 2022-10-11 14:37:59 +01:00 committed by GitHub
parent d5a2ca269c
commit 7171c64eb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 2 deletions

2
deps/HDiffPatch vendored

@ -1 +1 @@
Subproject commit eae33ca58a7bc0225d66132ffe812b3ca62559c2
Subproject commit 492b1b7a8286dbe7b8b032bc82a0f08de09a215b

View File

@ -20,7 +20,8 @@ end
function libHDiffPatch.project()
project "libHDiffPatch"
language "C"
language "C++"
cppdialect "C++11"
libHDiffPatch.includes()

33
deps/premake/libParallel.lua vendored Normal file
View File

@ -0,0 +1,33 @@
libParallel = {
source = path.join(dependencies.basePath, "HDiffPatch"),
}
function libParallel.import()
links {
"libParallel"
}
libParallel.includes()
end
function libParallel.includes()
includedirs {
path.join(libParallel.source, "libParallel"),
}
end
function libParallel.project()
project "libParallel"
language "C++"
cppdialect "C++11"
files {
path.join(libParallel.source, "libParallel/*.h"),
path.join(libParallel.source, "libParallel/*.cpp"),
}
warnings "Off"
kind "StaticLib"
end
table.insert(dependencies, libParallel)