From 9183772611c60c77600ed2c30d13c67adc941283 Mon Sep 17 00:00:00 2001 From: levlam Date: Mon, 17 Feb 2020 15:08:11 +0300 Subject: [PATCH] Force 32-bit build for code generation in UWP example. GitOrigin-RevId: 52f7287ae254347f0edd893b825df43a4dedfab5 --- example/uwp/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/uwp/build.ps1 b/example/uwp/build.ps1 index d24e5ece4..f78718e49 100644 --- a/example/uwp/build.ps1 +++ b/example/uwp/build.ps1 @@ -35,7 +35,7 @@ function prepare { cd build-native - cmake $td_root -DCMAKE_TOOLCHAIN_FILE="$vcpkg_cmake" -DTD_ENABLE_DOTNET=ON + cmake "$td_root" -A Win32 -DCMAKE_TOOLCHAIN_FILE="$vcpkg_cmake" -DTD_ENABLE_DOTNET=ON CheckLastExitCode cmake --build . --target prepare_cross_compiling CheckLastExitCode