2019-04-16 16:36:30 +00:00
|
|
|
group("third_party")
|
|
|
|
project("cxxopts")
|
|
|
|
uuid("8b68cbe8-2da4-4f28-be14-9352eafa3168")
|
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
|
2019-04-16 16:36:30 +00:00
|
|
|
language("C++")
|
|
|
|
files({
|
|
|
|
"cxxopts/include/cxxopts.hpp",
|
|
|
|
})
|
|
|
|
warnings("Off")
|