diff options
author | rtk0c <[email protected]> | 2022-05-22 14:54:06 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-05-22 14:54:06 -0700 |
commit | 55c4420b69fa172ac7b6b3523597b9a46a5d1bcd (patch) | |
tree | 407fbd2fd7911b8bfa8567502d7493708036be2f /3rdparty/sqlitecpp/CMakeLists.txt | |
parent | 195e30b1e39fa4dc535172ba248f0c18733dcb3c (diff) |
Vendor SQLiteCpp completely for internal patching
Diffstat (limited to '3rdparty/sqlitecpp/CMakeLists.txt')
-rw-r--r-- | 3rdparty/sqlitecpp/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
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 +) |