Simple "Hello, World!" program in C++.
- Linux/Unix: cmake, g++
- Windows: MSVC
mkdir build && cd build
cmake ..
make
same as Linux, except instead of using
cmake ..
use
cmake -G "yourXCodeGoesHere" ..
same as Linux, except instead of using
cmake ..
use
cmake -G "yourMSVCGoesHere" ..
inside build dir
./src/hello_world