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:
parent
d5a2ca269c
commit
7171c64eb3
2
deps/HDiffPatch
vendored
2
deps/HDiffPatch
vendored
@ -1 +1 @@
|
|||||||
Subproject commit eae33ca58a7bc0225d66132ffe812b3ca62559c2
|
Subproject commit 492b1b7a8286dbe7b8b032bc82a0f08de09a215b
|
3
deps/premake/libHDiffPatch.lua
vendored
3
deps/premake/libHDiffPatch.lua
vendored
@ -20,7 +20,8 @@ end
|
|||||||
|
|
||||||
function libHDiffPatch.project()
|
function libHDiffPatch.project()
|
||||||
project "libHDiffPatch"
|
project "libHDiffPatch"
|
||||||
language "C"
|
language "C++"
|
||||||
|
cppdialect "C++11"
|
||||||
|
|
||||||
libHDiffPatch.includes()
|
libHDiffPatch.includes()
|
||||||
|
|
||||||
|
33
deps/premake/libParallel.lua
vendored
Normal file
33
deps/premake/libParallel.lua
vendored
Normal 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)
|
Loading…
Reference in New Issue
Block a user