From 238386065472375b17ccbf2734147561a7686d45 Mon Sep 17 00:00:00 2001 From: Frank Lange Date: Sat, 20 Mar 2021 14:26:39 +0100 Subject: [PATCH] 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. --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 8304f62..640d59f 100644 --- a/README.md +++ b/README.md @@ -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