Windows (Powershell) C++ Build Guide¶
Table of Contents¶
System Requirements¶
C++ Compiler: C++20 compatible
Visual Studio 2019 16.8+ or Visual Studio 2022
Version Control: Git (recent version)
Build System: CMake 3.16+
Installing Base Dependencies¶
For systems lacking these tools, you can install using the Visual Studio Installer:
Download and install Visual Studio Community (free)
While installing, select
Desktop development with C++workloadYou can optionally select
C++ Clang Compiler for Windows
Method 1: conda Environment Setup (Preferred)¶
This approach leverages conda for streamlined dependency management and is our top recommendation. Ensure your system requirements are met first.
Step 1: conda Installation¶
If conda isn’t already available:
Go to: https://github.com/conda-forge/miniforge/releases/latest
Download the
Miniforge3-Windows-x86_64.exeinstallerRun the installer and follow the prompts
Launch “Miniforge Prompt” and run
conda init powershellso that the conda environment can be accessed from powershell.
Step 2: Environment Creation¶
conda env create -f packaging/environment.yml
conda activate huira_env
Step 3: Compilation Process¶
mkdir build && cd build
cmake -D CMAKE_TOOLCHAIN_FILE="../cmake/conda-toolchain.cmake" ../
cmake --build . --config Release -j
NOTE: If you are using bash shell, you may not need the space between -D and CMAKE_TOOLCHAIN_FILE.
Step 4: Environment Installation¶
After successful compilation, integrate Huira into your conda environment:
If you’re in powershell:
cmake --install . --config Release --prefix "$env:CONDA_PREFIX"
If you’re in cmd prompt or miniforge prompt:
cmake --install . --config Release --prefix "%CONDA_PREFIX%"
[!IMPORTANT] To uninstall, you must run
cmake --build . --target uninstallfrom within the samebuilddirectory you installed from.
Method 2: vcpkg Package Manager¶
vcpkg provides cross-platform package management through source compilation. Initial builds may take considerable time due to source-based dependency building. Verify system requirements before proceeding.
vcpkg Configuration:¶
git clone https://github.com/microsoft/vcpkg.git C:\vcpkg
cd C:\vcpkg
.\bootstrap-vcpkg.bat
.\vcpkg integrate install
Compilation Steps:¶
mkdir build && cd build
cmake -D CMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake" ../
cmake --build . --config Release -j
NOTE: If you are using bash shell, you may not need the space between -D and CMAKE_TOOLCHAIN_FILE.