Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 924 Bytes

File metadata and controls

42 lines (33 loc) · 924 Bytes

Installing Concordia

Windows

Prerequisites

  • CMake (3.14 or later)
  • A C compiler (Visual Studio / MSVC recommended, or MinGW)

Build and Install

  1. Configure and Build

    mkdir build
    cd build
    cmake ..
    cmake --build . --config Release
  2. Install You can install to a specific directory (recommended for local development) or to the system Program Files.

    Option A: Local Install (e.g., to a dist folder)

    cmake --install . --prefix "../dist" --config Release

    Then add the dist/bin folder to your System PATH.

    Option B: System Install (Requires Administrator) Open PowerShell as Administrator:

    cmake --install . --config Release

    This will typically install to C:\Program Files (x86)\concordia.

Linux / macOS

mkdir build && cd build
cmake ..
make
sudo make install