GrabBag/SDK/Device/EpicEye/QMAKE_BUILD.md

36 lines
845 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# EpicEye SDK - qmake 快速编译指南
## 快速编译
### Windows (推荐使用 Release 版本)
```cmd
cd C:\project\QT\GrabBag\SDK\EpicEye
qmake
nmake release
```
### Linux
```bash
cd /path/to/GrabBag/SDK/EpicEye
qmake
make
```
## 编译产物
- **Windows Release**: `output/lib/Release/EpicEyeSDK.lib`
- **Windows Debug**: `output/lib/Debug/EpicEyeSDK.lib`
- **Linux**: `output/lib/libEpicEyeSDK.a`
## 详细说明
请查看 [BUILD_INSTRUCTIONS.md](BUILD_INSTRUCTIONS.md) 获取完整的编译说明和故障排除。
## 注意事项
- **不要修改源码**: 所有源码文件src/、include/、thirdparty/)都不应该被修改
- **纯 C++ 库**: 此库不依赖 Qt仅使用 qmake 作为构建工具
- **Header-only 依赖**: 所有第三方库都是 header-only无需额外编译