summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/pathdir/src
diff options
context:
space:
mode:
Diffstat (limited to 'build/pymake/tests/pathdir/src')
-rw-r--r--build/pymake/tests/pathdir/src/Makefile2
-rw-r--r--build/pymake/tests/pathdir/src/pathtest.cpp6
2 files changed, 8 insertions, 0 deletions
diff --git a/build/pymake/tests/pathdir/src/Makefile b/build/pymake/tests/pathdir/src/Makefile
new file mode 100644
index 000000000..6c24bd8f9
--- /dev/null
+++ b/build/pymake/tests/pathdir/src/Makefile
@@ -0,0 +1,2 @@
+pathtest.exe: pathtest.cpp
+ cl -EHsc -MT $^
diff --git a/build/pymake/tests/pathdir/src/pathtest.cpp b/build/pymake/tests/pathdir/src/pathtest.cpp
new file mode 100644
index 000000000..bef8d8a11
--- /dev/null
+++ b/build/pymake/tests/pathdir/src/pathtest.cpp
@@ -0,0 +1,6 @@
+#include <cstdio>
+
+int main() {
+ std::printf("Called Windows executable: 2f7cdd0b-7277-48c1-beaf-56cb0dbacb24\n");
+ return 0;
+}