| 123456789101112131415 |
- diff --git a/CMakeLists.txt b/CMakeLists.txt
- index aea895ea..87e8deec 100644
- --- a/CMakeLists.txt
- +++ b/CMakeLists.txt
- @@ -98,8 +98,8 @@ if (SQLGEN_SQLITE3)
- endif()
- target_link_libraries(sqlgen PUBLIC unofficial::sqlite3::sqlite3)
- else()
- - if (NOT TARGET unofficial-sqlite3)
- - find_package(SQLite3 CONFIG REQUIRED)
- + if (NOT TARGET SQLite3)
- + find_package(SQLite3 REQUIRED)
- endif()
- target_link_libraries(sqlgen PUBLIC SQLite::SQLite3)
- endif()
|