-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
32 lines (24 loc) · 933 Bytes
/
README.txt
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
28
29
30
31
32
# SimCity v1.0 README
## Group 6 - CSCE 2110 - Section 002/213
### Members:
- Chandler Garret
- Trevonne Bridges
- Salma Omary
- Nathan Jodoin
### Compiling
To compile, please use the following command:
>``g++ main.cpp -o main``
### Running
To run the application with a supplied config text file and CSV:
1. Place the .CSV in the project folder.
2. For Example: run >``./main "config1.txt"`` .
If you do not include a config filename argument while runnning the executable,
the program will exit with error code 1 and inform you of the error.
The test files provided for the simulation at the beginning of the assignment
are included in the project directory. Their filenames are:
- config1.txt
- region1.csv
If you wish to use other configuration or region files,
they must be placed in the root project folder.
### Make
Due to the simplicity of our includes, a makefile is unecessary for compilation.