diff options
author | myrtle <gatecat@ds0.me> | 2022-08-21 20:53:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 20:53:10 +0200 |
commit | ccf4367209986d7431217f8c3a3df1b71a601385 (patch) | |
tree | 3e1c5cd75b7d260d477ea6f04d4ce15a8556a061 /README.md | |
parent | 05167fcb8bf9cd85ea605331ca36cac6f25ce67f (diff) | |
parent | 19160f10ae8916f9bb22166ce38186550c56b6d5 (diff) | |
download | nextpnr-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.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ``` |