aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/uwp
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2024-08-29 11:20:11 +0300
committerlevlam <levlam@telegram.org>2024-08-29 11:20:11 +0300
commitbf0ceb178a37ce8a5e6f69f3b3ebaf99811dd8da (patch)
treef41e427a4673253d157a7a348a1c83b1286bf337 /example/uwp
parentabcfdf97dcf2939538560971f0df54fdcb8b812e (diff)
Use TD_GENERATE_SOURCE_FILES in UWP example.
Diffstat (limited to 'example/uwp')
-rw-r--r--example/uwp/build.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/example/uwp/build.ps1 b/example/uwp/build.ps1
index 463592fa3..dd569b63f 100644
--- a/example/uwp/build.ps1
+++ b/example/uwp/build.ps1
@@ -42,9 +42,9 @@ function prepare {
cd build-native
- cmake -A Win32 -DCMAKE_TOOLCHAIN_FILE="$vcpkg_cmake" -DTD_ENABLE_DOTNET=ON "$td_root"
+ cmake -A Win32 -DTD_GENERATE_SOURCE_FILES=ON -DTD_ENABLE_DOTNET=ON "$td_root"
CheckLastExitCode
- cmake --build . --target prepare_cross_compiling
+ cmake --build .
CheckLastExitCode
cd ..