requests
This commit is contained in:
28
premake5.lua
Normal file
28
premake5.lua
Normal file
@@ -0,0 +1,28 @@
|
||||
workspace "CWeb"
|
||||
configurations { "Debug", "Release" }
|
||||
|
||||
project "CWebLibrary"
|
||||
kind "StaticLib"
|
||||
language "C"
|
||||
targetdir "bin/%{cfg.buildcfg}"
|
||||
|
||||
files {
|
||||
"http/*.c",
|
||||
"http/*.h"
|
||||
}
|
||||
|
||||
project "cweb"
|
||||
kind "ConsoleApp"
|
||||
language "C"
|
||||
targetdir "bin/%{cfg.buildcfg}"
|
||||
|
||||
files { "main.c" }
|
||||
|
||||
includedirs { "http" }
|
||||
links { "CWebLibrary" }
|
||||
|
||||
filter "configurations:Debug"
|
||||
symbols "On"
|
||||
|
||||
filter "configurations:Release"
|
||||
optimize "On"
|
||||
Reference in New Issue
Block a user