Browse Source

unify build commands

Signed-off-by: allisaurus <[email protected]>
allisaurus 3 năm trước cách đây
mục cha
commit
dda949965a
1 tập tin đã thay đổi với 4 bổ sung8 xóa
  1. 4 8
      README.md

+ 4 - 8
README.md

@@ -65,10 +65,8 @@ This option will output all the project binaries in the project's build folder e
 # example configure command
 # example configure command
 > cmake c:/path/to/o3de -B c:/path/to/o3de-multiplayersample/build -G "Visual Studio 16" -DLY_3RDPARTY_PATH="c:/3rdparty" -DLY_PROJECTS="c:/path/to/o3de-multiplayersample"
 > cmake c:/path/to/o3de -B c:/path/to/o3de-multiplayersample/build -G "Visual Studio 16" -DLY_3RDPARTY_PATH="c:/3rdparty" -DLY_PROJECTS="c:/path/to/o3de-multiplayersample"
 
 
-# example build commands
-> cmake --build c:/path/to/o3de-multiplayersample/build --target Editor MultiplayerSample.GameLauncher --config profile -- /m /nologo
-
-> cmake --build c:/path/to/o3de-multiplayersample/build --target Editor MultiplayerSample.ServerLauncher --config profile -- /m /nologo
+# example build command
+> cmake --build c:/path/to/o3de-multiplayersample/build --target Editor MultiplayerSample.GameLauncher MultiplayerSample.ServerLauncher --config profile -- /m /nologo
 ```
 ```
 
 
 #### Option #2 - Engine-centric approach to building a project
 #### Option #2 - Engine-centric approach to building a project
@@ -79,10 +77,8 @@ This option will output all the project and engine binaries in the engine's buil
 # example configure command
 # example configure command
 > cmake c:/path/to/o3de -B c:/path/to/o3de/build -G "Visual Studio 16" -DLY_3RDPARTY_PATH="c:/3rdparty" -DLY_PROJECTS="c:/path/to/o3de-multiplayersample"
 > cmake c:/path/to/o3de -B c:/path/to/o3de/build -G "Visual Studio 16" -DLY_3RDPARTY_PATH="c:/3rdparty" -DLY_PROJECTS="c:/path/to/o3de-multiplayersample"
 
 
-# example build commands
-> cmake --build c:/path/to/o3de/build --target Editor MultiplayerSample.GameLauncher --config profile -- /m /nologo
-
-> cmake --build c:/path/to/o3de/build --target Editor MultiplayerSample.ServerLauncher --config profile -- /m /nologo
+# example build command
+> cmake --build c:/path/to/o3de/build --target Editor MultiplayerSample.GameLauncher MultiplayerSample.ServerLauncher --config profile -- /m /nologo
 ```
 ```
 
 
 ### Step 4. Setup Client and Server
 ### Step 4. Setup Client and Server