Integrating sqlite3 #351
sketchylizard
started this conversation in
General
Replies: 2 comments
-
I'm now getting it to build sqlite, but calling target_link_libraries(MyProject PUBLIC SQLite3) does not add any directories to my include path. |
Beta Was this translation helpful? Give feedback.
0 replies
-
what i did:
this will add a static library |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Has anyone tried integrating sqlite3? There is a GitHub mirror for the sources but they don't use CMake. There are a few GitHub repos that mirror the sqlite-amalgamation and include CMake files though. I've added that using:
CPMAddPackage(
NAME sqlite3
GIT_REPOSITORY https://github.com/azadkuh/sqlite-amalgamation.git
GIT_TAG v3.8.10.2)
But it's not building and I can't seem to use it in any calls to target_link_libraries.
Beta Was this translation helpful? Give feedback.
All reactions