Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible to use via FetchContent or CPM? #231

Open
adamski opened this issue Dec 9, 2023 · 1 comment
Open

Possible to use via FetchContent or CPM? #231

adamski opened this issue Dec 9, 2023 · 1 comment

Comments

@adamski
Copy link

adamski commented Dec 9, 2023

I'm trying to use this library via the standard method of FetchContent and CPM in my CMakeLists.txt.

CPMAddPackage(
        NAME sqlite_modern_cpp
        GIT_REPOSITORY https://github.com/SqliteModernCpp/sqlite_modern_cpp.git
        GIT_TAG v3.2
)

And then link it:

target_link_libraries(${PROJECT_NAME} sqlite_modern_cpp)

However although I can see it's been downloaded, it can't find the include:

#include <sqlite_modern_cpp.h>
fatal error: 'sqlite_modern_cpp.h' file not found

Is this installation and usage method supported?

@codethinki
Copy link

i dont think you need to link it its not a library its a header. I don't know how to use CPM but i looked it up and try something like this:

if(sqlite_modern_cpp_ADDED)	 	 
    target_include_directories(...)
 endif();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants