Skip to content

Commit fefe981

Browse files
PhRosenbergerpmai
authored andcommittedJun 15, 2023
Description lists instead of manually formatting as bold in doc/setup
Signed-off-by: Philipp Rosenberger <[email protected]>
1 parent 34821c0 commit fefe981

8 files changed

+23
-25
lines changed
 

‎doc/setup/including_osi_dev_projects.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ TODO: Content to be added in future release.
88

99
// TODO: Add description of this task.
1010

11-
**Prerequisites**
11+
Prerequisites::
1212

1313
//TODO: Add prerequisites.
1414

15-
**Steps**
15+
Steps::
1616

1717
// TODO: Add steps.
1818

19-
**Result**
19+
Result::
2020

2121
// TODO: Add result.

‎doc/setup/installing_linux_cpp.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ include::{root-path}_config.adoc[]
44
endif::[]
55
= Installing OSI for C++ on Linux
66

7-
**Prerequisites**
7+
Prerequisites::
88

99
* You have installed everything described in <<top-installing-osi-prerequisits>>.
1010
11-
**Steps**
11+
Steps::
1212

1313
. Open a terminal.
1414
. Clone the Open Simulation repository.

‎doc/setup/installing_linux_python.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ include::{root-path}_config.adoc[]
44
endif::[]
55
= Installing OSI for Python on Linux
66

7-
**Prerequisites**
7+
*Prerequisites::
88
99
* You have installed everything described in <<top-installing-osi-prerequisits>>.
1010
* You have installed _pip3_.
1111
* You have installed _python-setuptools_.
1212
* For a local installation, you have installed _virtualenv_.
1313
14-
**Steps**
14+
Steps::
1515
1616
. Open a terminal.
1717
. Clone the Open Simulation repository.

‎doc/setup/installing_macos.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ TODO: Content to be added in future release.
88

99
// TODO: Add description of this task.
1010

11-
**Prerequisites**
11+
Prerequisites::
1212

1313
//TODO: Add prerequisites.
1414

15-
**Steps**
15+
Steps::
1616

1717
// TODO: Add steps.
1818

19-
**Result**
19+
Result::
2020

2121
// TODO: Add result.

‎doc/setup/installing_prerequisites.adoc

+6-8
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ For other use cases like first trials to get started with OSI, dynamic linking c
1515

1616
== Windows
1717

18-
**Dynamic Linking (NOT RECOMMENDED)**
18+
Dynamic Linking (NOT RECOMMENDED)::
1919

2020
Since on Windows symbols are not exported per default, it can be kind of annoying to deal with this during _protobuf_ header generation (see for example https://groups.google.com/g/protobuf/c/PDR1bqRazts).
2121
That is an important reason to use static linking.
2222

23-
**Static Linking**
23+
Static Linking::
2424

2525
Static linking might require to manually build _protobuf_.
2626
It is important to notice that on Windows you can also specify how to link against the C runtime.
@@ -29,15 +29,13 @@ Basically, this can be set in CMake, e.g. https://cmake.org/cmake/help/latest/pr
2929
Therefore, it could make sense to still dynamically link against the C Runtime when statically linking _protobuf_ / OSI.
3030
(This is important e.g. when building shared libraries, since a static C runtime will create an isolated heap for your dll, which can lead to segfaults depending on what you expose on your public interfaces.)
3131

32-
The easiest way to achieve static linking on Windows without setting all the stuff manually in Cmake and building _protobuf_ is to actually use vcpkg:
33-
34-
**Install static _protobuf_ with dynamic c-runtime with vcpkg:**
32+
The easiest way to achieve static linking on Windows without setting all the stuff manually in Cmake and building _protobuf_ is to actually **install static _protobuf_ with dynamic c-runtime with vcpkg**:
3533

3634
----
3735
vcpkg install --triplet=x64-windows-static-md protobuf
3836
----
3937

40-
**Build:**
38+
Build::
4139

4240
For the cmake configuration, we can directly specify our vcpkg installation:
4341
----
@@ -47,7 +45,7 @@ cmake --build . --config Release
4745

4846
== Linux
4947

50-
**Dynamic linking (NOT RECOMMENDED)**
48+
Dynamic linking (NOT RECOMMENDED)::
5149

5250
As already mentioned, shared linking is possible on Linux, but NOT RECOMMENDED.
5351
However, for dynamic linking install _protobuf_ (version 3.0.0 or higher) with apt:
@@ -56,7 +54,7 @@ sudo apt-get install libprotobuf-dev protobuf-compiler
5654
----
5755
In the CMakeLists of the OSI project, `LINK_WITH_SHARED_OSI` has to be enabled.
5856

59-
**Static linking**
57+
Static linking::
6058

6159
A common error here is to just install _protobuf_ with apt and link against it.
6260
This means that your OSI is build statically but still linking dynamically against _protobuf_.

‎doc/setup/installing_windows_cpp.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ include::{root-path}_config.adoc[]
44
endif::[]
55
= Installing OSI for C++ on Windows
66

7-
**Prerequisites**
7+
Prerequisites::
88

99
* You have installed everything described in <<top-installing-osi-prerequisits>>.
1010
11-
**Steps**
11+
Steps::
1212

1313
. Open a terminal as administrator.
1414
. Clone the Open Simulation repository.

‎doc/setup/installing_windows_python.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ include::{root-path}_config.adoc[]
44
endif::[]
55
= Installing OSI for Python on Windows
66

7-
**Prerequisites**
7+
Prerequisites::
88

99
* You have installed everything described in <<top-installing-osi-prerequisits>>.
1010
* You have installed _Python_ with administrator rights.
1111
* Make sure _Python_ is added to `PATH`.
1212
13-
**Steps**
13+
Steps::
1414

1515
. Open a terminal.
1616
. Clone the Open Simulation repository.

‎doc/setup/using_osi_support_tools.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ TODO: Content to be added in future release.
88

99
// TODO: Add description of this task.
1010

11-
**Prerequisites**
11+
Prerequisites::
1212

1313
//TODO: Add prerequisites.
1414

15-
**Steps**
15+
Steps::
1616

1717
// TODO: Add steps.
1818

19-
**Result**
19+
Result::
2020

2121
// TODO: Add result.

0 commit comments

Comments
 (0)
Please sign in to comment.