We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4614d17 commit a50674eCopy full SHA for a50674e
cross-cmake.sh
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+#
3
+# Cross-compiling with Visual Studio Code and Petalinux SDK:
4
+# Put following stuff into .vscode/settings.json (replace the value for PETALINUX_SDK with the actual location):
5
+# {
6
+# "cmake.environment": { "PETALINUX_SDK": "/mnt/yocto_500G/petalinux/environment-setup-aarch64-xilinx-linux" },
7
+# "cmake.configureSettings": { "TARGET_HW": "ZUP" },
8
+# "cmake.cmakePath": "${workspaceRoot}/cross-cmake.sh"
9
+# }
10
11
+source ${PETALINUX_SDK}
12
+cmake "${@}"
0 commit comments