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 43630d8 commit d6d0b50Copy full SHA for d6d0b50
raylib/build.py
@@ -147,14 +147,16 @@ def build_unix():
147
"""
148
149
ffibuilder.cdef(pre_process_header(raylib_h))
150
- ffibuilder.cdef(pre_process_header(glfw3_h))
151
ffibuilder.cdef(pre_process_header(rlgl_h))
152
ffibuilder.cdef(pre_process_header(raymath_h, True))
153
154
if os.path.isfile(raygui_h):
155
ffibuilder.cdef(pre_process_header(raygui_h))
156
if os.path.isfile(physac_h):
157
ffibuilder.cdef(pre_process_header(physac_h))
+ if os.path.isfile(glfw3_h):
158
+ ffibuilder.cdef(pre_process_header(glfw3_h))
159
+
160
161
if platform.system() == "Darwin":
162
print("BUILDING FOR MAC")
0 commit comments