Skip to content

Commit dfa4f8e

Browse files
author
Arnd R. Strube
committed
Change for cpputest_build/
1 parent 264fe98 commit dfa4f8e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.markdown

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,20 @@ After you cloned CppUTest, you can build it with your favorite build tool (CMake
5656

5757
Building with autoconf requires you to (this requires you to have installed GNU autotools, apt-get/brew install automake autoconf libtool):
5858

59-
{% highlight bash %}
60-
$ autoreconf -i
61-
$ mkdir build_dir; cd build_dir
62-
$ configure ..
59+
```bash
60+
$ cd cpputest_build
61+
$ autoreconf .. -i
62+
$ ../configure
6363
$ make
64-
{% endhighlight %}
64+
```
6565

6666
Or you can use CMake if that is the build tool you fancy (this requires you have install CMake, apt-get install cmake):
6767

68-
{% highlight bash %}
69-
$ mkdir build_dir; cd build_dir
68+
```bash
69+
$ cd cpputest_build
7070
$ cmake ..
7171
$ make
72-
{% endhighlight %}
72+
```
7373

7474
For Windows users, the above work with cygwin. There are also several MS VC++ projects available.
7575

0 commit comments

Comments
 (0)