7171c64eb3
* 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>
34 lines
565 B
Lua
34 lines
565 B
Lua
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)
|