aboutsummaryrefslogtreecommitdiffstats
path: root/examples/samplebinding/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/samplebinding/README.md')
-rw-r--r--examples/samplebinding/README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/samplebinding/README.md b/examples/samplebinding/README.md
index d12d2b774..26ff2b383 100644
--- a/examples/samplebinding/README.md
+++ b/examples/samplebinding/README.md
@@ -177,7 +177,13 @@ python main.py
It is possible that **CMake** can pick up the wrong compiler
for a different architecture, but it can be addressed explicitly
-using the -G option:
+by setting the **CC** environment variable:
+
+```bash
+set CC=cl
+```
+
+or by using the -G option:
```bash
cmake -H.. -B. -G "Visual Studio 14 Win64"