Nigel Barink
41d5b87c7b
Added basics of an editor console, Added YAML-CPP as a dependency of the editor , Added NativeFileDialog as a dependency
43 lines
595 B
Lua
43 lines
595 B
Lua
project "Editor"
|
|
kind "ConsoleApp"
|
|
|
|
buildmessage "Building editor ..."
|
|
|
|
links{
|
|
"YoggieEngine",
|
|
"ImGuizmo",
|
|
"yaml-cpp"
|
|
}
|
|
|
|
includedirs{
|
|
"./../BarinkEngine/Include",
|
|
|
|
-- I'd prefer if didn't need these..
|
|
-- We'll figure that out some time later
|
|
incfolder["lua"],
|
|
incfolder["spdlog"],
|
|
incfolder["glm"],
|
|
incfolder["assimp"],
|
|
incfolder["glad"],
|
|
incfolder["glfw"],
|
|
|
|
incfolder["imgui"],
|
|
incfolder["imguizmo"],
|
|
incfolder["entt"],
|
|
incfolder["yamlcpp"],
|
|
|
|
"./include"
|
|
|
|
}
|
|
|
|
libdirs {
|
|
staticlib["yoggie"]
|
|
}
|
|
|
|
files {
|
|
"./src/*.h",
|
|
"./src/*.cpp"
|
|
}
|
|
|
|
include("../yaml-cpp")
|