-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.cmake
12 lines (12 loc) · 1.02 KB
/
.env.cmake
1
2
3
4
5
6
7
8
9
10
11
12
set (LIB_PATH "./external/lib")
set (INCLUDE_PATH "./external/include")
set (GLFW_LIB_PATH "./external/lib") # Set to your own GLFW libs path or leave it as it is
set (GLFW_INCLUDE_PATH "./external/include") # Set to your own GLFW include path or leave it as it is
set (ASSIMP_LIB_PATH "./external/lib") # Set to your own Assimp path or leave it as it is
set (ASSIMP_INCLUDE_PATH "./external/include") # Set to your own Assimp path or leave it as it is
set (EMBREE_LIB_PATH "./external/lib") # Set to your own Embree path or leave it as it is
set (EMBREE_INCLUDE_PATH "./external/include") # Set to your own Embree path or leave it as it is
set (GLAD_LIB_PATH "./external/lib") # Set to your own GLAD path or leave it as it is
set (GLAD_INCLUDE_PATH "./external/include") # Set to your own GLAD path or leave it as it is
#set (VULKAN_LIB_PATH "C:/VulkanSDK/1.2.154.1/Lib") # Optional. CMake will try to find Vulkan by itself.
#set (VULKAN_INCLUDE_PATH "C:/VulkanSDK/1.2.154.1/Include") # Optional. CMake will try to find Vulkan by itself.