13 Star 14 Fork 9

foryoung365 / UVSocket

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
premake5.lua 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
foryoung365 提交于 2016-01-19 17:43 . format premake5.lua
workspace "UVSocket"
configurations{ "Debug", "Release"}
location "VSBuild"
project "UVSocket"
kind "StaticLib"
language "C++"
location "VSBuild"
architecture "x86_64"
files {"UVSocket/**.h", "UVSocket/**.cpp"}
includedirs{"libuv/include"}
filter "configurations:Debug"
targetdir "Debug"
runtime "Debug"
filter "configurations:Release"
targetdir "Release"
runtime "Release"
flags {"NoIncrementalLink"}
project "TestServerSocket"
kind "ConsoleApp"
language "C++"
location "VSBuild"
architecture "x86_64"
dependson {"UVSocket"}
files {"TestServerSocket/**.h", "TestServerSocket/**.cpp"}
includedirs{"libuv/include", "UVSocket/", "vld/include"}
links {"libuv", "UVSocket", "ws2_32", "Psapi", "IPHLPAPI", "Userenv"}
filter "configurations:Debug"
links {"vld"}
includedirs{"vld/include"}
libdirs{"libuv/lib/Debug", "Debug", "vld/lib"}
targetdir "VSBuild/Debug"
runtime "Debug"
flags {"Symbols"}
filter "configurations:Release"
libdirs{"libuv/lib/Release", "Release"}
targetdir "VSBuild/Release"
runtime "Release"
flags {"NoIncrementalLink"}
project "TestClientSocket"
kind "ConsoleApp"
language "C++"
location "VSBuild"
architecture "x86_64"
dependson {"UVSocket"}
files {"TestClientSocket/**.h", "TestClientSocket/**.cpp"}
includedirs{"libuv/include", "UVSocket/", "vld/include"}
links {"libuv", "UVSocket", "ws2_32", "Psapi", "IPHLPAPI", "Userenv"}
filter "configurations:Debug"
links {"vld"}
libdirs{"libuv/lib/Debug", "Debug", "vld/lib"}
targetdir "VSBuild/Debug"
runtime "Debug"
flags {"Symbols"}
filter "configurations:Release"
libdirs{"libuv/lib/Release", "Release"}
targetdir "VSBuild/Release"
runtime "Release"
flags {"NoIncrementalLink"}
C++
1
https://gitee.com/foryoung365/UVSocket.git
git@gitee.com:foryoung365/UVSocket.git
foryoung365
UVSocket
UVSocket
master

搜索帮助