cmake 如何引用没有 lib 的 dll

set(shaderLibPath ../dll) ## 全局 dll 文件夹
include_directories(${shaderLibPath}/sqlite3/include) ## dll 头文件路径
set(sqlite3DllPath ${shaderLibPath}/sqlite3) ## dll 所在路径
set(sqlite3DllFile sqlite3.dll) ## dll 文件名称
FIND_LIBRARY(sqlite3Dll ${sqlite3DllFile} ${sqlite3DllPath}) ## 查找 dll ???

建议你看下这篇博客3 cmake-生成dll和lib