adding in files

This commit is contained in:
talksik
2023-09-08 09:56:36 -07:00
parent 7cd3f63a2a
commit b93e3f26ee
30 changed files with 2650 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.15)
project(HelloWorld)
set(CMAKE_CXX_STANDARD 14)
set (source_dir "./src")
file (GLOB source_files "${source_dir}/*.cpp")
add_executable(HelloWorld ${source_files})