- 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 --recursive
rm ./vcpkg/vcpkg.exe
mkdir build
cd build
cmake .. -A Win32
...or...
cmake .. -G "Visual Studio 16 2019" -A Win32
...or...
cmake .. -G "Visual Studio 17 2022" -A Win32
cmake --build . --config RelWithDebInfo --parallel
Supported Builds
cmake --build . --config Debug --parallel
cmake --build . --config RelWithDebInfo --parallel
cmake --build . --config Release --parallel
cmake --build . --config MinSizeRel --parallel
cmake --build . --config RelWithDebInfo --target package --parallel