Fix incorrect CMake target name in cmake_android.sh

The name of the main target was changed from `DDNet` to `game-client`.
This commit is contained in:
Robert Müller 2024-05-07 13:22:59 +02:00
parent 468cd85839
commit ceb1640320

View file

@ -116,7 +116,7 @@ function build_for_type() {
-DVIDEORECORDER=OFF
(
cd "${_DEFAULT_BUILD_FOLDER}/$_ANDROID_SUB_BUILD_DIR/$1" || exit 1
cmake --build . --target DDNet
cmake --build . --target game-client
)
}