2018-11-25 15:39:14 +00:00
|
|
|
group("third_party")
|
|
|
|
project("cpptoml")
|
|
|
|
uuid("1e86cc51-3f8b-476d-9249-3b200424846b")
|
2020-11-21 14:14:40 +00:00
|
|
|
if os.istarget("android") then
|
|
|
|
-- ndk-build only supports StaticLib and SharedLib.
|
|
|
|
kind("StaticLib")
|
|
|
|
else
|
|
|
|
kind("Utility")
|
|
|
|
end
|
2018-11-25 15:39:14 +00:00
|
|
|
language("C++")
|
|
|
|
files({
|
|
|
|
"cpptoml/include/cpptoml.h",
|
|
|
|
})
|