29 lines
414 B
Lua
29 lines
414 B
Lua
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"
|