Skip to content

timothyklemm/eclide

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ECL IDE

Building on windows

Prerequisits

  • 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.

Clone the repository

git clone https://github.com/hpcc-systems/eclide.git eclide
cd eclide
git submodule update --init --recursive

Remove old vcpkg.exe (if it exists)

rm ./vcpkg/vcpkg.exe

Create a build folder (eclide/build)

mkdir build
cd build

Generate Visual Studio Solution

cmake .. -A Win32
...or...
cmake .. -G "Visual Studio 16 2019" -A Win32
...or...
cmake .. -G "Visual Studio 17 2022" -A Win32

Build

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

Create Installer

cmake --build . --config RelWithDebInfo --target package --parallel

About

IDE for ECL development

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 78.7%
  • C 13.5%
  • Objective-C 7.7%
  • Other 0.1%