Project handout: Click Here
As you begin using input files and output files with this project,
you'll need to modify the CMakeLists.txt
file and the .github/workflows/build.yaml
files.
Place any input files in the folder that contains your source code. When your project is built, it will be copied into the build directory by CMake.
-
CMakeLists.txt
- Open it and look for the commented section (with
#
signs). Edit theset(input01 "")
etc. based upon how many files you need. - there should be one
set(...)
statement per input file - you DO NOT need to list output files in
CmakeLists.txt
.
- Open it and look for the commented section (with
-
.github/workflows/build.yaml
- Open this file and look for the
INPUT_FILES:
command near the top. - List the input file names in the order they should be sent to argv of main.
- OUTPUT file need to be listed here as well in the
OUTPUT_FILES:
section. - For example:
would be equivalent to the following execution command:
INPUT_FILES: train.csv train_target.csv OUTPUT_FILES: output01.txt
./executableName train.csv train_target.csv output01.txt
- Open this file and look for the