Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ Navigate to a source code folder.
* Go into the newly created folder and begin you work on the report. There must be only 2 files and 1 of them must be written by you:
- `vector_sum.tex` - a LaTeX report file which consider information about your program, name it in the same way as `<short task name>`.
- `CMakeLists.txt` - a file to configure your project. Examples for each configuration can be found in `test_tasks/test_latex`.
* The number of directories will increase with time. To build only your project, you need to do the following:
```
cmake --build . --target <name task's directory> --config RELEASE
```
Example:
```
cmake --build . --target nesterov_a_vector_sum --config RELEASE
```
* Name your pull request in the following way:
* for tasks:
```
Expand Down