iw5-mod/deps/premake/libParallel.lua
dependabot[bot] 7171c64eb3
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>
2022-10-11 14:37:59 +01:00

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)