create cmake project

This commit is contained in:
2019-12-26 23:21:49 -05:00
parent d2dd002965
commit caf65101dd
3 changed files with 11 additions and 1 deletions

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.10)
project(test)
set(CMAKE_CXX_STANDARD 17)
add_executable(test test.cpp)