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.
50 lines
1008 B
50 lines
1008 B
workspace "Bakara" |
|
architecture "x64" |
|
configurations { "Debug", "Release" } |
|
startproject "Sandbox" |
|
|
|
outputdir = "%{cfg.system}-%{cfg.architecture}-%{cfg.buildcfg}" |
|
|
|
project "Bakara" |
|
location "bakara" |
|
kind "StaticLib" |
|
language "C++" |
|
|
|
targetdir("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}") |
|
objdir("%{wks.location}/bin-int/" .. outputdir .. "/%{prj.name}") |
|
|
|
files |
|
{ |
|
"%{prj.location}/src/**.hpp", |
|
"%{prj.location}/src/**.cpp", |
|
} |
|
|
|
project "Sandbox" |
|
location "sandbox" |
|
kind "ConsoleApp" |
|
language "C++" |
|
cppdialect "C++17" |
|
staticruntime "on" |
|
systemversion "latest" |
|
|
|
targetdir("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}") |
|
objdir("%{wks.location}/bin-int/" .. outputdir .. "/%{prj.name}") |
|
|
|
files |
|
{ |
|
"%{prj.location}/src/**.hpp", |
|
"%{prj.location}/src/**.cpp", |
|
} |
|
|
|
includedirs |
|
{ |
|
"%{wks.location}/bakara/src", |
|
} |
|
|
|
links |
|
{ |
|
"Bakara" |
|
} |
|
|
|
|
|
|
|
|