- CMake (3.14 or later)
- A C compiler (Visual Studio / MSVC recommended, or MinGW)
-
Configure and Build
mkdir build cd build cmake .. cmake --build . --config Release
-
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
distfolder)cmake --install . --prefix "../dist" --config Release
Then add the
dist/binfolder 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.
mkdir build && cd build
cmake ..
make
sudo make install