Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 491 Bytes

README.md

File metadata and controls

42 lines (35 loc) · 491 Bytes

C++

Simple "Hello, World!" program in C++.

Dependencies

  • Linux/Unix: cmake, g++
  • Windows: MSVC

Build and execute

Linux

mkdir build && cd build
cmake ..
make

MacOS

same as Linux, except instead of using

cmake ..

use

cmake -G "yourXCodeGoesHere" ..

Windows

same as Linux, except instead of using

cmake ..

use

cmake -G "yourMSVCGoesHere" ..

Manual run

inside build dir

./src/hello_world