blob: a548994571a5e628b98031ca2c788c16b225259e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
group("third_party")
project("cxxopts")
uuid("8b68cbe8-2da4-4f28-be14-9352eafa3168")
if os.istarget("android") then
-- ndk-build only supports StaticLib and SharedLib.
kind("StaticLib")
else
kind("Utility")
end
language("C++")
files({
"cxxopts/include/cxxopts.hpp",
})
warnings("Off")
|