2022-10-22 12:58:55 +00:00
|
|
|
project "Editor"
|
2022-08-15 19:35:22 +00:00
|
|
|
kind "ConsoleApp"
|
|
|
|
|
2022-10-22 12:58:55 +00:00
|
|
|
buildmessage "Building editor ..."
|
2022-08-15 19:35:22 +00:00
|
|
|
|
|
|
|
links{
|
2022-11-03 14:06:42 +00:00
|
|
|
"BarinkEngine",
|
|
|
|
"ImGuizmo"
|
2022-08-15 19:35:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
includedirs{
|
|
|
|
"./../BarinkEngine/Include",
|
|
|
|
|
|
|
|
-- I'd prefer if didn't need these..
|
|
|
|
-- We'll figure that out some time later
|
|
|
|
"./../libs/lua/include",
|
|
|
|
"./../libs/spdlog/include",
|
|
|
|
"./../libs/glm",
|
|
|
|
"./../libs/GorillaAudio/include",
|
|
|
|
|
|
|
|
"./../libs/assimp/include",
|
|
|
|
"./../libs/glad/include",
|
|
|
|
"./../libs/glfw/include",
|
|
|
|
"./../libs/tinygltf",
|
|
|
|
"./../libs/glew/include",
|
|
|
|
"./../libs/glm",
|
|
|
|
"./../libs/ImGui",
|
2022-11-03 14:06:42 +00:00
|
|
|
"./../libs/guizmo",
|
2022-08-15 19:35:22 +00:00
|
|
|
|
2022-11-03 14:06:42 +00:00
|
|
|
"./../libs/entt/src",
|
2022-08-15 19:35:22 +00:00
|
|
|
|
|
|
|
"./include"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
libdirs {
|
|
|
|
'./../build/BarinkEngine/Debug'
|
|
|
|
}
|
|
|
|
|
|
|
|
files {
|
|
|
|
"./include/*.h",
|
|
|
|
"./src/*.cpp"
|
2022-11-03 14:06:42 +00:00
|
|
|
}
|
|
|
|
|