We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 383d676 commit d5fd875Copy full SHA for d5fd875
CMakeLists.txt
@@ -70,6 +70,10 @@ elseif(WIN32)
70
set(INSTALL_DATA_DIR ".")
71
set(INSTALL_FONTS_DIR ".")
72
endif()
73
+
74
+if(RAYX_CUSTOM_DATA_DIR)
75
+ set(INSTALL_DATA_DIR ${RAYX_CUSTOM_DATA_DIR})
76
+endif()
77
# ------------------
78
79
Intern/CMakeLists.txt
@@ -11,7 +11,10 @@ endif()
11
12
# ---- Subdirectories ----
13
add_subdirectory(rayx-core)
14
-add_subdirectory(rayx)
15
+if(NOT RAYX_CMD STREQUAL "NO")
16
+ add_subdirectory(rayx)
17
18
19
# Don't build rayx-ui without Vulkan
20
if(NOT VULKAN STREQUAL "NO")
0 commit comments