Skip to content

Instantly share code, notes, and snippets.

@rusdevops
Last active March 10, 2019 13:16
Show Gist options
  • Save rusdevops/046bdb68ca785430a553bfb564cb954a to your computer and use it in GitHub Desktop.
Save rusdevops/046bdb68ca785430a553bfb564cb954a to your computer and use it in GitHub Desktop.
the design of the report

Laboratory work

...

Tasks

  • 1. task1
  • 2. task2

...

Tutorial

$ instruction_witout_output
$ instruction <placeholder>
$ instruction_with_output

...

Report

...

Links

  • link1
  • link2

...

Copyright (c) 2017 Братья Вершинины

Laboratory work

...

Tasks

  • 1. task1
  • 2. task2

...

Tutorial

Block description

$ instruction_witout_output # instruction description
$ instruction value_of_placeholder # instruction description
$ instruction_with_output # instruction description
output line 1
output line 2
...

...

Report

...

Links

  • link1
  • link2

...

Copyright (c) 2017 Братья Вершинины

Пример 1

$ export GITHUB_USERNAME=<имя_пользователя>

before


after

Устанавливаем значение переменную окружения GITHUB_USERNAME

$ export GITHUB_USERNAME=rusdevops # Устанавливаем значение переменной окружения GITHUB_USERNAME

Пример 2

$ cmake -H. -B_build -DCMAKE_INSTALL_PREFIX=_install
$ cmake --build _build --target install
$ tree _install

before


after

Собираем наш проект и устанавливаем его в директорию _install

$ cmake -H. -B_build -DCMAKE_INSTALL_PREFIX=_install # конфигурируем проект ...
$ cmake --build _build --target install # собираем цель install
$ tree _install # отображаем дерево установленного проекта
_install/
- bin/
  - demo
- include/
  - print.hpp
- lib/
  - libprint.a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment