From 55c4420b69fa172ac7b6b3523597b9a46a5d1bcd Mon Sep 17 00:00:00 2001 From: rtk0c Date: Sun, 22 May 2022 14:54:06 -0700 Subject: Vendor SQLiteCpp completely for internal patching --- 3rdparty/sqlitecpp/CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 3rdparty/sqlitecpp/CMakeLists.txt (limited to '3rdparty/sqlitecpp/CMakeLists.txt') diff --git a/3rdparty/sqlitecpp/CMakeLists.txt b/3rdparty/sqlitecpp/CMakeLists.txt new file mode 100644 index 0000000..1ba64db --- /dev/null +++ b/3rdparty/sqlitecpp/CMakeLists.txt @@ -0,0 +1,10 @@ +file(GLOB_RECURSE SQLiteCpp_SOURCE ${CMAKE_CURRENT_LIST_DIR}/source/*.cpp) +add_library(SQLiteCpp ${SQLiteCpp_SOURCE}) +target_include_directories(SQLiteCpp +PUBLIC + ${CMAKE_CURRENT_LIST_DIR}/source +) +target_link_libraries(SQLiteCpp +PRIVATE + sqlite3 # This comes from conan +) -- cgit v1.2.3-70-g09d2