Skip to content

Instantly share code, notes, and snippets.

@Jan200101
Created August 7, 2023 11:20
Show Gist options
  • Save Jan200101/2e1c36dd4a949d4df3ef4c80ce12b815 to your computer and use it in GitHub Desktop.
Save Jan200101/2e1c36dd4a949d4df3ef4c80ce12b815 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# https://cmake.org/cmake/help/latest/manual/cmake-policies.7.html
# https://cmake.org/cmake/help/latest/variable/CMAKE_POLICY_DEFAULT_CMPNNNN.html
POLICIES=(0017,0020)
export CC=cl
export CXX=cl
exec "cmake" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SYSTEM_NAME=Windows \
-DCMAKE_CROSS_COMPILING=ON \
`eval echo -DCMAKE_POLICY_DEFAULT_CMP{$POLICIES}=NEW` \
"$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment