f3c15f2cda
* Json11 => NlohmannJson * Fix release build * Updated gitmodulie * Address review * Update .gitmodules Co-authored-by: rackover <roxanne@thegamebakers.com> Co-authored-by: Edo <edoardo.sanguineti222@gmail.com>
19 lines
335 B
Lua
19 lines
335 B
Lua
nlohmannjson = {
|
|
source = path.join(dependencies.basePath, "nlohmannjson"),
|
|
}
|
|
|
|
function nlohmannjson.import()
|
|
nlohmannjson.includes()
|
|
end
|
|
|
|
function nlohmannjson.includes()
|
|
includedirs {
|
|
path.join(nlohmannjson.source, "single_include/nlohmann")
|
|
}
|
|
end
|
|
|
|
function nlohmannjson.project()
|
|
end
|
|
|
|
table.insert(dependencies, nlohmannjson)
|