Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 586 Bytes

File metadata and controls

29 lines (22 loc) · 586 Bytes

Hello Word

Sample "Hello World" with googletest

Can be used as a template for future projects for education only

Project Supports

  • project version
  • cmake for build
  • gtest to check the version number
  • automatic version increase when pushing
  • automatically run tests after build
  • automatic build for Ubuntu
  • automatic build for Windows

Build local

cd HelloWorld
git clone https://github.com/google/googletest.git

mkdir build && cd build

cmake ..

# debug
cmake --build .

# release
cmake --build . --config Release