DEV Community

tinhnguyentrung
tinhnguyentrung

Posted on

Cmake basic

Some basic syntax

Build a project

$ mkdir build
$ cmake -S . -B build
$ cmake --build build
Enter fullscreen mode Exit fullscreen mode

Install

$ cmake --build build --target install
$ cmake -v # verbose build
Enter fullscreen mode Exit fullscreen mode

Picking a compiler

$ CC=clang CXX=clang++ cmake ...
Enter fullscreen mode Exit fullscreen mode

Picking a generator

$ cmake -G"mytool"
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay