aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authormyrtle <gatecat@ds0.me>2022-08-21 20:53:10 +0200
committerGitHub <noreply@github.com>2022-08-21 20:53:10 +0200
commitccf4367209986d7431217f8c3a3df1b71a601385 (patch)
tree3e1c5cd75b7d260d477ea6f04d4ce15a8556a061 /README.md
parent05167fcb8bf9cd85ea605331ca36cac6f25ce67f (diff)
parent19160f10ae8916f9bb22166ce38186550c56b6d5 (diff)
downloadnextpnr-ccf4367209986d7431217f8c3a3df1b71a601385.tar.gz
nextpnr-ccf4367209986d7431217f8c3a3df1b71a601385.tar.bz2
nextpnr-ccf4367209986d7431217f8c3a3df1b71a601385.zip
Merge pull request #1016 from atsampson/python3
Use CMake's Python3 rather than PythonInterp in subdirs
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 36ff9a8b..957be889 100644
--- a/README.md
+++ b/README.md
@@ -65,7 +65,7 @@ sudo make install
On Windows, you may specify paths explicitly:
```
-cmake . -DARCH=ice40 -DICESTORM_INSTALL_PREFIX=C:/ProgramData/icestorm -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows -G "Visual Studio 15 2017 Win64" -DPYTHON_EXECUTABLE=C:/Python364/python.exe -DPYTHON_LIBRARY=C:/vcpkg/packages/python3_x64-windows/lib/python36.lib -DPYTHON_INCLUDE_DIR=C:/vcpkg/packages/python3_x64-windows/include/python3.6 .
+cmake . -DARCH=ice40 -DICESTORM_INSTALL_PREFIX=C:/ProgramData/icestorm -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows -G "Visual Studio 15 2017 Win64" -DPython3_EXECUTABLE=C:/Python364/python.exe -DPython3_LIBRARY=C:/vcpkg/packages/python3_x64-windows/lib/python36.lib -DPython3_INCLUDE_DIR=C:/vcpkg/packages/python3_x64-windows/include/python3.6 .
cmake --build . --config Release
```