small cmake introduction

This commit is contained in:
2022-01-11 14:58:45 +01:00
parent e289320376
commit 775598901b
4 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# set a minimum CMake version required
cmake_minimum_required(VERSION 2.4)
# start a new CMake project
project(HelloWorld)
# create build target app
add_executable(app hello.cpp)