소스 검색

README-emscripten.md: Fixed cmake commmand line for enabling pthreads.

Fixes #13190.
Ryan C. Gordon 2 주 전
부모
커밋
ee69cdc1fe
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/README-emscripten.md

+ 1 - 1
docs/README-emscripten.md

@@ -239,7 +239,7 @@ If you want to build with thread support, something like this works:
 ```bash
 mkdir build
 cd build
-emcmake cmake -DSDL_THREADS=ON ..
+emcmake cmake -DSDL_PTHREADS=ON ..
 # you can also do `emcmake cmake -G Ninja ..` and then use `ninja` instead of this command.
 emmake make -j4
 ```