You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
 
 
 

40 lines
682 B

project "server"
location "./server"
kind "ConsoleApp"
language "C++"
cppdialect "C++17"
systemversion "latest"
targetdir("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}")
objdir("%{wks.location}/bin-int/" .. outputdir .. "/%{prj.name}")
includedirs
{
"%{IncludeDirs.bakanet}",
}
files
{
"%{prj.location}/**.h",
"%{prj.location}/**.cpp",
"./commun.h"
}
links
{
"bakanet"
}
filter "system:linux"
defines
{
"BK_PLAFORM_LINUX"
}
filter "system:windows"
defines
{
"BK_PLAFORM_WINDOWS"
}