cmake_minimum_required(VERSION 3.2)

project(helloWorld)

add_executable(helloWorld main.cpp)

# Set Compiler for Linux/MacOS
if(UNIX)
   set(CMAKE_CXX_COMPILER g++)                     
   add_definitions(-g -O2 -std=c++14 -Wall -Wextra)
endif()


