From 567c30e3dd4c572fa825d8781ed69652306a961e Mon Sep 17 00:00:00 2001 From: Peter Matula Date: Tue, 7 Apr 2020 23:09:28 +0200 Subject: [PATCH] README.md: remove trailing whitespaces --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f1c7d1262..751e4fc9c 100644 --- a/README.md +++ b/README.md @@ -119,14 +119,14 @@ As of RetDec version 4.0 you can easily use various RetDec libraries in your pro If you installed RetDec into a standard installation location of your system (e.g. `/usr`, `/usr/local`), all you need to do in order to use its components is: ```cmake -find_package(retdec 4.0 REQUIRED - COMPONENTS - +find_package(retdec 4.0 REQUIRED + COMPONENTS + [...] ) -target_link_libraries(your-project - PUBLIC - retdec:: +target_link_libraries(your-project + PUBLIC + retdec:: [...] ) ``` @@ -137,7 +137,7 @@ If you did not install RetDec somewhere where it can be automatically discovered ```cmake list(APPEND CMAKE_PREFIX_PATH ${RETDEC_INSTALL_DIR}) ``` - + 2. Set the path to installed RetDec CMake scripts to `retdec_DIR`: ```cmake set(retdec_DIR ${RETDEC_INSTALL_DIR}/share/retdec/cmake)