fadedreamz / cpp

Hello World in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cpp

Simple hello world program

dependencies

cmake, g++ (Linux/Unix), MSVC (Windows)

building

build and run in Linux environment

mkdir build && cd build
cmake ..
make

build and run in macos

same as Linux, except instead of using

cmake ..

use

cmake -G "yourXCodeGoesHere" ..

build and run in windows

same as Linux, except instead of using

cmake ..

use

cmake -G "yourMSVCGoesHere" ..

manual run

inside build dir

./src/hello_world

About

Hello World in C++

License:The Unlicense


Languages

Language:CMake 57.8%Language:C++ 42.2%