소스 검색

Tweaked emscripten introduction

Sam Lantinga 7 달 전
부모
커밋
c806c271c5
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      docs/INTRO-emscripten.md

+ 2 - 1
docs/INTRO-emscripten.md

@@ -34,13 +34,14 @@ add_executable(hello WIN32 hello.c)
 target_link_libraries(hello PRIVATE SDL3::SDL3)
 ```
 
+Build:
 ```sh
 emcmake cmake -S . -B build
 cd build
 emmake make
 ```
 
-You can now run your app by pointing a webserver at your build directory and connecting a web browser to it, opening hello.html.
+You can now run your app by pointing a webserver at your build directory and connecting a web browser to it, opening hello.html
 
 A more complete example is available at: