remove unnecessary newlines

This commit is contained in:
Daniel Sipka 2015-10-15 22:09:28 +02:00
parent f9c06163ee
commit 76514517e8

View File

@ -213,9 +213,7 @@ its include path, and add a static library target named mstch. For example:
```cmake ```cmake
add_subdirectory(external/mstch) add_subdirectory(external/mstch)
include_directories(${mstch_INCLUDE_DIR}) include_directories(${mstch_INCLUDE_DIR})
target_link_libraries(your_project mstch) target_link_libraries(your_project mstch)
``` ```
@ -235,7 +233,6 @@ config files, so you can use use `find_package` in your CMakeLists.txt:
```cmake ```cmake
find_package(mstch) find_package(mstch)
target_link_libraries(your_project mstch::mstch) target_link_libraries(your_project mstch::mstch)
``` ```