blob: 5e7d6d74a5efae87f6494c7c66e0dedd000cb709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
group("third_party")
project("cpptoml")
uuid("1e86cc51-3f8b-476d-9249-3b200424846b")
if os.istarget("android") then
-- ndk-build only supports StaticLib and SharedLib.
kind("StaticLib")
else
kind("Utility")
end
language("C++")
files({
"cpptoml/include/cpptoml.h",
})
|