Don't use <pre> for code blocks

archshift 2014-05-21 13:32:10 -07:00
parent e9f9a65c33
commit d825b6f751

@ -13,35 +13,44 @@ You'll need to download and install the following to build Citra:
Works by calling these commands from a terminal:
<pre>git clone https://github.com/glfw/glfw.git
```
git clone https://github.com/glfw/glfw.git
cd glfw
mkdir build && cd build
cmake ..
make
sudo make install</pre>
sudo make install
```
### Build Citra:
<pre>mkdir build
```
mkdir build
cd build
cmake ..
make
sudo make install (currently doesn't work, needs to be fixed)
Optionally, you can use "cmake -i .." to adjust various options (e.g. disable Qt4 GUI).</pre>
```
Optionally, you can use "cmake -i .." to adjust various options (e.g. disable Qt4 GUI).
### Building with debug symbols:
<pre>cmake .. -DCMAKE_BUILD_TYPE=Debug
make</pre>
```
cmake .. -DCMAKE_BUILD_TYPE=Debug
make
```
### Running without installing:
<pre>cd data
../build/src/citra_qt/citra-qt</pre>
```cd data
../build/src/citra_qt/citra-qt
```
### Debugging:
<pre>cd data
```
cd data
gdb ../build/src/citra_qt/citra-qt
(gdb) run
(gdb) bt</pre>
(gdb) bt
```