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 0ae559f commit 1756b4bCopy full SHA for 1756b4b
build_libtcod.py
@@ -158,7 +158,9 @@ def walk_sources(directory: str) -> Iterator[str]:
158
159
extra_compile_args: list[str] = []
160
extra_link_args: list[str] = []
161
-if "PYODIDE" not in os.environ:
+if "PYODIDE" in os.environ:
162
+ extra_compile_args.append("--use-port=sdl3")
163
+else:
164
extra_compile_args.extend(build_sdl.extra_compile_args)
165
extra_link_args.extend(build_sdl.extra_link_args)
166
0 commit comments