adding in initial helloworld files
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
|
||||
project(HelloWorld)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
set (source_dir "${PROJECT_SOURCE_DIR}/src")
|
||||
file (GLOB source_files "${source_dir}/*.cpp")
|
||||
|
||||
add_executable(HelloWorld ${source_files})
|
||||
Reference in New Issue
Block a user