@@ -80,7 +80,7 @@ the notable differences.
8080
8181Testing Integration
8282-------------------
83- The testing target ``gdexample `` is guarded by ``GODOTCPP_ENABLE_TESTING `` which is off by default.
83+ The testing target ``godot-cpp-test `` is guarded by ``GODOTCPP_ENABLE_TESTING `` which is off by default.
8484
8585To configure and build the godot-cpp project to enable the integration
8686testing targets the command will look something like:
@@ -89,7 +89,7 @@ testing targets the command will look something like:
8989
9090 # Assuming our current directory is the godot-cpp source root
9191 cmake -S . -B cmake-build -DGODOTCPP_ENABLE_TESTING=YES
92- cmake --build cmake-build --target gdexample
92+ cmake --build cmake-build --target godot-cpp-test
9393
9494 Basic walkthrough
9595-----------------
@@ -189,7 +189,7 @@ needs to be specified at build time ie ``--config Release``
189189
190190 # Assuming our current directory is the godot-cpp source root
191191 cmake -S . -B cmake-build -DGODOTCPP_ENABLE_TESTING=YES
192- cmake --build cmake-build -t gdexample --config Release
192+ cmake --build cmake-build -t godot-cpp-test --config Release
193193
194194
195195 MSys2/clang64, "Ninja" - Debug
@@ -205,7 +205,7 @@ Using the msys2/clang64 shell
205205
206206 # Assuming our current directory is the godot-cpp source root
207207 cmake -S . -B cmake-build -G"Ninja" -DGODOTCPP_ENABLE_TESTING=YES -DCMAKE_BUILD_TYPE=Release
208- cmake --build cmake-build -t gdexample
208+ cmake --build cmake-build -t godot-cpp-test
209209
210210 MSys2/clang64, "Ninja Multi-Config" - dev_build, Debug Symbols
211211~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -220,7 +220,7 @@ Using the msys2/clang64 shell
220220
221221 # Assuming our current directory is the godot-cpp source root
222222 cmake -S . -B cmake-build -G"Ninja Multi-Config" -DGODOTCPP_ENABLE_TESTING=YES -DGODOTCPP_DEV_BUILD:BOOL=ON
223- cmake --build cmake-build -t gdexample --config Debug
223+ cmake --build cmake-build -t godot-cpp-test --config Debug
224224
225225 Emscripten for web platform
226226~~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments