Simple "Hello, World!" program in C++.
- Linux/Unix: cmake, g++
- Windows: MSVC
mkdir build && cd build
cmake ..
makesame 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