small cmake introduction
This commit is contained in:
8
Cmake Intro/CMakeLists.txt
Normal file
8
Cmake Intro/CMakeLists.txt
Normal 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)
|
||||
Reference in New Issue
Block a user