2021-05-22 19:50:20 +00:00
|
|
|
workspace "BarinkEngine"
|
2021-09-29 18:14:27 +00:00
|
|
|
configurations { "Debug", "Test", "Release" }
|
2022-05-27 20:47:36 +00:00
|
|
|
|
2022-04-20 19:40:35 +00:00
|
|
|
language "C++"
|
|
|
|
cppdialect "C++17"
|
2022-05-27 20:47:36 +00:00
|
|
|
|
2022-04-20 19:40:35 +00:00
|
|
|
targetdir "./build/%{prj.name}/%{cfg.buildcfg}"
|
|
|
|
objdir "./intermediates/%{prj.name}/%{cfg.buildcfg}"
|
2022-05-27 20:47:36 +00:00
|
|
|
|
2022-04-30 20:51:50 +00:00
|
|
|
architecture "x86_64"
|
2021-05-22 19:50:20 +00:00
|
|
|
|
2022-05-27 20:47:36 +00:00
|
|
|
|
|
|
|
filter "configurations:Debug"
|
|
|
|
defines {"DEBUG"}
|
|
|
|
symbols "On"
|
|
|
|
|
|
|
|
filter "configurations:Release"
|
|
|
|
defines {"NDEBUG"}
|
|
|
|
optimize "On"
|
|
|
|
|
2022-08-15 19:35:22 +00:00
|
|
|
include("./SandboxApplication")
|
2021-09-29 18:14:27 +00:00
|
|
|
|
2022-05-28 11:32:17 +00:00
|
|
|
include("./BarinkEngine")
|