mirror of
https://github.com/tribufu/sdk-cpp
synced 2025-06-16 03:34:20 +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
11 lines
198 B
Bash
11 lines
198 B
Bash
#!/usr/bin/env sh
|
|
|
|
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
|
|
then
|
|
./vendor/premake/linux/premake5 gmake2
|
|
|
|
elif [ "$(uname)" = "Darwin" ]
|
|
then
|
|
./vendor/premake/mac/premake5 xcode4
|
|
fi
|