8000 Merge pull request #142 from Klaim/patch-1 · vojtechgistr/cppbestpractices@3b336de · GitHub
[go: up one dir, main page]

Skip to content

Commit 3b336de

Browse files
authored
Merge pull request cpp-best-practices#142 from Klaim/patch-1
Fixed slightly incorrect build2 references
2 parents 5dfc898 + 3104a4c commit 3b336de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

02-Use_the_Tools_Available.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Use an industry standard widely accepted build tool. This prevents you from rein
3535
* [meson](http://mesonbuild.com/index.html) - Open source build system meant to be both extremely fast, and, even more importantly, as user friendly as possible.
3636
* [premake](https://premake.github.io/)
3737
* [xmake](https://xmake.io) - A cross-platform build utility based on Lua. Modern C/C++ build tools, Support multi-language hybrid compilation
38+
* [build2](https://build2.org) - A cargo-like complete toolchain (build system, package manager, project manager)
3839

3940
Remember, it's not just a build tool, it's also a programming language. Try to maintain good clean build scripts and follow the recommended practices for the tool you are using.
4041

@@ -46,7 +47,7 @@ Package management is an important topic in C++, with currently no clear winner.
4647
* [hunter](https://github.com/ruslo/hunter) - CMake driven cross-platform package manager for C/C++
4748
* [C++ Archive Network (CPPAN)](https://cppan.org/) - a crossplatform dependency manager for C++
4849
* [qpm](https://www.qpm.io/) - Package manager for Qt
49-
* [build2](https://build2.org/) - cargo-like package management for C++
50+
* [build2](https://build2.org/) - A cargo-like complete toolchain (build system, package manager, project manager)
5051
* [Buckaroo](https://buckaroo.pm) - Truly decentralized cross-platform dependency manager for C/C++ and more
5152
* [Vcpkg](https://github.com/microsoft/vcpkg) - Microsoft C++ Library Manager for Windows, Linux, and MacOS - [description](https://docs.microsoft.com/en-us/cpp/build/vcpkg)
5253

0 commit comments

Comments
 (0)
0