Skip to content

Building HPX on Windows

Beldunordj509 edited this page Jun 19, 2018 · 4 revisions

How to install HPX on Windows

1- install visual studio 2- install git 3- install Cmake .msi 4- build vcpkg (in git bash) in the desired folder:

git clone https://github.com/Microsoft/vcpkg cd vcpkg .\bootstrap-vcpkg.bat .\vcpkg integrate install 5-Install hwloc .\vcpkg.exe install hwloc:x64-windows 6- Install boost .\vcpkg.exe install hwloc:x64-windows

7- clone HPX

git clone https://github.com/STEllAR-GROUP/hpx.git

8- Open CMAKE and add the following entries: set CMAKE_TOOLCHAIN_FILE (it's a filepath) vcpkg\scripts\buildsystems\vcpkg.cmake set CMAKE_BUILD_TYPE (it's a string) Debug

9- configure 10- generate

Clone this wiki locally