cmake 链接dll库
时间: 2023-08-22 22:04:42 浏览: 102
动态链接库dll制作
你可以使用 CMake 来链接 DLL 库。下面是一个简单的示例:
```cmake
cmake_minimum_required(VERSION 3.0)
project(YourProjectName)
# 设置头文件路径
include_directories(include)
# 设置库文件路径
link_directories(lib)
# 添加要编译的源文件
add_executable(YourExecutableName main.cpp)
# 链接 DLL 库
target_link_libraries(YourExecutableName YourDLLName)
```
你需要将上述代码中的 `YourProjectName` 替换为你的项目名称,`include` 替换为你的头文件路径,`lib` 替换为你的库文件路径,`YourExecutableName` 替换为你的可执行文件名,`YourDLLName` 替换为你要链接的 DLL 文件名。
请确保你的 DLL 文件位于指定的库文件路径中,否则链接过程可能会失败。
阅读全文