- git (optional - needed to clone sources)
- cmake
- Visual Studio 2017 / 2019 / 2022
- NSIS (optional - needed to create install package)
Note: The following instructions assume you are using the git bash terminal. If you are using the cmd terminal, replace rm with del and mkdir with md.
git clone https://github.com/hpcc-systems/eclide.git eclide
cd eclide
git submodule update --init --recursiverm ./vcpkg/vcpkg.exemkdir build
cd buildcmake .. -A Win32
...or...
cmake .. -G "Visual Studio 16 2019" -A Win32
...or...
cmake .. -G "Visual Studio 17 2022" -A Win32cmake --build . --config RelWithDebInfo --parallelSupported Builds
cmake --build . --config Debug --parallel
cmake --build . --config RelWithDebInfo --parallel
cmake --build . --config Release --parallel
cmake --build . --config MinSizeRel --parallelcmake --build . --config RelWithDebInfo --target package --parallel