Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 cmake 构建一个 xcode 项目,但我遇到了一些问题,包括 dylib (libsqlite3.dylib)。
任何帮助,将不胜感激
您可以使用以下 cmake 宏来查找 libsqlite3:github Page
然后使用:
target_link_libraries(myexecutable, ${SQLITE3_LIBRARIES})
将您的应用程序添加到 sqlite3 库的链接。然后你需要重新生成你的 XCode 项目文件。