From 8d1ac49ac20523ddf1f611bf543673ba32fb0cae Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Thu, 3 Mar 2022 15:33:30 +0100 Subject: [PATCH] doc: install: in tree build --- doc/guide/install.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/guide/install.rst b/doc/guide/install.rst index a42f2d7..0c5fb89 100644 --- a/doc/guide/install.rst +++ b/doc/guide/install.rst @@ -91,11 +91,12 @@ To build the app: .. code-block:: bash git clone https://github.com/trabucayre/openFPGALoader + cd openFPGALoader mkdir build cd build - cmake ../openFPGALoader # add -DBUILD_STATIC=ON to build a static version - # add -DENABLE_UDEV=OFF to disable udev support and -d /dev/xxx - # add -DENABLE_CMSISDAP=OFF to disable CMSIS DAP support + cmake .. # add -DBUILD_STATIC=ON to build a static version + # add -DENABLE_UDEV=OFF to disable udev support and -d /dev/xxx + # add -DENABLE_CMSISDAP=OFF to disable CMSIS DAP support cmake --build . # or make -j$(nproc)