The Core Build System is the successor of the legacy Managed Build System.

The classical Makefile projects are based on the Managed Build System. Managed Build projects can generate a Makefile based on GUI controlled build configurations in the project properties. The user can manage the separate build configurations for Run and Debug. There is a notion of "active" build configuration, which is the one that gets built when the build button is pressed.

The Core Build System is the basis for CMake projects and Core Build Makefile projects. The CDT LaunchBar plays a central role and is used for building and launching the program. The philosophy is "Build for launch". It simplifies the flow a lot.

These are the main differences compared with the Managed Build System:

Core Build connects CDT projects to industry standard external build systems like CMake, Makefile, and Meson. The removal of the CDT specific build configurations allow Core Build projects to be easily be shared with other IDEs, command-line use, and Continuous Integration (CI) flows.

Thanks to the auto discovery, the indexing of the C/C++ code has improved, because all compilation flags are known per file. This is especially beneficial for projects that use multiple toolchains in one project.

Next: Creating a CMake project


Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation