You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add find_package(sqlite_orm CONFIG REQUIRED) to CMakeLists.txt
Run cmake
Failure logs
Could not find a package configuration file provided by "sqlite_orm" with
any of the following names:
sqlite_ormConfig.cmake
sqlite_orm-config.cmake
Add the installation prefix of "sqlite_orm" to CMAKE_PREFIX_PATH or set
"sqlite_orm_DIR" to a directory containing one of the above files. If
"sqlite_orm" provides a separate development package or SDK, be sure it has
been installed.
The text was updated successfully, but these errors were encountered:
Thanks for posting this issue.
Since there are no exported CMake files generated by sqlite-orm now.
So we cannot use find_package(sqlite_orm CONFIG REQUIRED) to find this library.
Maybe you can use find_path() and find_library() to find it.
Host Environment
To Reproduce
Steps to reproduce the behavior:
./vcpkg install sqlite-orm
find_package(sqlite_orm CONFIG REQUIRED)
toCMakeLists.txt
Failure logs
The text was updated successfully, but these errors were encountered: