/HelloCmake

C HelloWorld program with cmake

Primary LanguageCMakeMIT LicenseMIT

HelloCmake

C HelloWorld program with cmake

Build tools:


Editor:
Run cmake:
cmake -S source -B build

Compile with gcc:

gcc -Wall ./source/hello.c -o ./build/hello

Run hello binary:

./build/hello

Output:

Hello, World!

License: MIT