File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,10 @@ add_subdirectory(tinygltf EXCLUDE_FROM_ALL)
2121add_subdirectory (imgui EXCLUDE_FROM_ALL )
2222add_subdirectory (dxbc EXCLUDE_FROM_ALL )
2323
24- # For some reason, FFXIV uses a *32-bit* Lua compiler. We have to build it as 32-bit or else loading the bytecode fails.
25- add_compile_options (-m32)
26- add_link_options (-m32)
27- add_subdirectory (luadec51 EXCLUDE_FROM_ALL )
24+ # TODO: Enable in the Flatpak, it's a bit annoying though as we would have to build it separately
25+ if (NOT BUILD_FLATPAK)
26+ # For some reason, FFXIV uses a *32-bit* Lua compiler. We have to build it as 32-bit or else loading the bytecode fails.
27+ add_compile_options (-m32)
28+ add_link_options (-m32)
29+ add_subdirectory (luadec51 EXCLUDE_FROM_ALL )
30+ endif ()
You can’t perform that action at this time.
0 commit comments