Skip to content

Commit

Permalink
Build script disabling GLFW on Termux build.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Dec 22, 2024
1 parent 73b0925 commit a6955a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def include_sha_headers():

include_sha_headers()
lib_build_args = [
'g++', '-Iinclude', '-Istd', '-fPIC',
'g++', '-Iinclude', '-Istd', '-fPIC', '-D__TERMUX__',
'-shared', '-o', OUTPUT_LIBRARY + '.so'
] + ext_instructions + lib_headers + lib_source_files + cpp_files + cc_files

Expand Down

0 comments on commit a6955a0

Please sign in to comment.