-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
27 lines (22 loc) · 851 Bytes
/
CMakeLists.txt
File metadata and controls
27 lines (22 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# For each of the command line argument INPUT files, list them here in the order you
# want them to appear after the name of the executable
# For example, if you would execute ./proj.exe input01.txt
# then put input01.txt as the value for file01
set (file01 "input01.txt")
set (file02 "input02.txt")
set (file03 "")
set (file04 "")
set (file05 "")
############################################
### Students: Don't modify anything below
############################################
cmake_minimum_required(VERSION 3.10)
project(ActionsExample)
# set an environment variable EXE_NAME
set(EXE_NAME sampleActionsOutput)
# Copy data files to build dir
foreach(file IN LISTS file01 file02 file03 file04 file05)
configure_file(${file} ${file} COPYONLY)
endforeach()
set(CMAKE_CXX_STANDARD 17)
add_executable(${EXE_NAME} main.cpp GlobalFunctions.cpp)