mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-15 20:04:18 +00:00
* Add libhv and test http client * Remove cpp-httplib * Update premake5.lua * Update client.cpp * Update premake5.lua * Add more windows libs * Use mintaka http client
32 lines
514 B
Lua
32 lines
514 B
Lua
--- @diagnostic disable: undefined-global
|
|
|
|
workspace "tribufu"
|
|
location "."
|
|
configurations { "debug", "release" }
|
|
|
|
if _ACTION == "vs2022" then
|
|
platforms {
|
|
"windows-aarch64",
|
|
"windows-i686",
|
|
"windows-x86_64",
|
|
}
|
|
end
|
|
|
|
if _ACTION == "gmake2" then
|
|
platforms {
|
|
"linux-aarch64",
|
|
"linux-i686",
|
|
"linux-x86_64",
|
|
}
|
|
end
|
|
|
|
if _ACTION == "xcode4" then
|
|
platforms {
|
|
"mac-aarch64",
|
|
"mac-x86_64",
|
|
}
|
|
end
|
|
|
|
include "src"
|
|
include "examples"
|