-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLibraries.lua
More file actions
33 lines (27 loc) · 1.71 KB
/
Libraries.lua
File metadata and controls
33 lines (27 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
LibraryPath = {}
LibraryPath["GLFW"] = "%{wks.location}/LucyEngine/ThirdParty/GLFW"
LibraryPath["spdlog"] = "%{wks.location}/LucyEngine/ThirdParty/spdlog"
LibraryPath["entt"] = "%{wks.location}/LucyEngine/ThirdParty/entt"
LibraryPath["stb"] = "%{wks.location}/LucyEngine/ThirdParty/stb"
LibraryPath["assimp"] = "%{wks.location}/LucyEngine/ThirdParty/assimp"
LibraryPath["nativefiledialog"] = "%{wks.location}/LucyEngine/ThirdParty/nativefiledialog"
LibraryPath["ImGui"] = "%{wks.location}/LucyEngine/ThirdParty/ImGui"
LibraryPath["ImGuizmo"] = "%{wks.location}/LucyEditor/ThirdParty/ImGuizmo"
LibraryPath["Tracy"] = "%{wks.location}/LucyEngine/ThirdParty/Tracy"
LibraryPath["glm"] = "%{wks.location}/LucyEngine/ThirdParty/glm"
LibraryPath["VulkanSDK"] = os.getenv("VULKAN_SDK")
LibraryPath["VulkanInclude"] = "%{LibraryPath.VulkanSDK}/Include"
LibraryPath["VulkanLib"] = "%{LibraryPath.VulkanSDK}/Lib"
--For Debug
LibraryPath["SlangDebug"] = "%{LibraryPath.VulkanLib}/slangd.lib"
LibraryPath["SlangDebugRT"] = "%{LibraryPath.VulkanLib}/slang-rtd.lib"
LibraryPath["ShaderCDebug"] = "%{LibraryPath.VulkanLib}/shaderc_sharedd.lib"
LibraryPath["SPIRVDebug"] = "%{LibraryPath.VulkanLib}/spirv-cross-cored.lib"
LibraryPath["SPIRVGLSLDebug"] = "%{LibraryPath.VulkanLib}/spirv-cross-glsld.lib"
LibraryPath["SPIRVTools"] = "%{LibraryPath.VulkanLib}/SPIRV-Toolsd.lib"
--For Release
LibraryPath["SlangRelease"] = "%{LibraryPath.VulkanLib}/slang.lib"
LibraryPath["SlangReleaseRT"] = "%{LibraryPath.VulkanLib}/slang-rt.lib"
LibraryPath["ShaderCRelease"] = "%{LibraryPath.VulkanLib}/shaderc_shared.lib"
LibraryPath["SPIRVGLSLRelease"] = "%{LibraryPath.VulkanLib}/spirv-cross-glsl.lib"
LibraryPath["SPIRVRelease"] = "%{LibraryPath.VulkanLib}/spirv-cross-core.lib"