...
- 1. task1
- 2. task2
...
$ instruction_witout_output
$ instruction <placeholder>
$ instruction_with_output
...
...
- link1
- link2
...
Copyright (c) 2017 Братья Вершинины
...
...
Block description
$ instruction_witout_output # instruction description
$ instruction value_of_placeholder # instruction description
$ instruction_with_output # instruction description
output line 1
output line 2
...
...
...
...
Copyright (c) 2017 Братья Вершинины
$ export GITHUB_USERNAME=<имя_пользователя>
before
after
Устанавливаем значение переменную окружения GITHUB_USERNAME
$ export GITHUB_USERNAME=rusdevops # Устанавливаем значение переменной окружения GITHUB_USERNAME
$ 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