blob: bdcefa32e2f3c4c091f08a7093a4cbd5c01bf53f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
add_requires("cmake", "ninja")
if is_host("windows") and winos.version():le("win7") then
add_requires("python 3.7.x")
else
add_requires("python 3.x")
end
if is_host("linux", "bsd", "macosx") then
add_requires("pkg-config", "autoconf", "automake", "libtool")
elseif is_host("windows") then
set_toolchains("msvc")
end
|