Fix Readme installation instructions

Removes manually adding the include directory from the Readme install instructions. The manual step is not needed since the include dir is already added on the library target by the current CMake configuration.
This commit is contained in:
Frank Lange 2021-03-20 14:26:39 +01:00
parent f6b32259f2
commit 2383860654

View File

@ -103,10 +103,6 @@ Example for Linux:
```cmake
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/thirdparty/SQLiteCpp)
include_directories(
${CMAKE_CURRENT_LIST_DIR}/thirdparty/SQLiteCpp/include
)
add_executable(main src/main.cpp)
target_link_libraries(main
SQLiteCpp