44 lines
652 B
Lua
44 lines
652 B
Lua
project "Editor"
|
|
kind "ConsoleApp"
|
|
|
|
buildmessage "Building editor ..."
|
|
|
|
links{
|
|
"YoggieEngine",
|
|
"ImGuizmo",
|
|
"yaml-cpp",
|
|
"nfd.lib"
|
|
}
|
|
|
|
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"],
|
|
incfolder["nativefiledialog"],
|
|
|
|
"./include"
|
|
|
|
}
|
|
|
|
libdirs {
|
|
staticlib["yoggie"],
|
|
staticlib["nativefiledialog"]
|
|
}
|
|
|
|
files {
|
|
"./src/**.h",
|
|
"./src/**.cpp"
|
|
}
|