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.
26 lines
487 B
26 lines
487 B
project "sandbox" |
|
kind "ConsoleApp" |
|
language "C++" |
|
cppdialect "C++17" |
|
staticruntime "off" |
|
systemversion "latest" |
|
|
|
targetdir("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}") |
|
objdir("%{wks.location}/bin-int/" .. outputdir .. "/%{prj.name}") |
|
|
|
files |
|
{ |
|
"src/**.h", |
|
"src/**.cpp" |
|
} |
|
|
|
includedirs |
|
{ |
|
"%{wks.location}/bakara/vendor", |
|
"%{wks.location}/bakara/src" |
|
} |
|
|
|
links |
|
{ |
|
"bakara" |
|
}
|
|
|