We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
在Linux下, 直接运行configure然后make编译出的静态库文件为hv.a, cmake编译出的静态库文件为hv_static.a.
configure
make
hv.a
cmake
hv_static.a
是否需要统一?
The text was updated successfully, but these errors were encountered:
你可以在cmake里这么设置下
set_target_properties(hv_static PROPERTIES OUTPUT_NAME hv)
Sorry, something went wrong.
No branches or pull requests
在Linux下,
直接运行
configure
然后make
编译出的静态库文件为hv.a
,cmake
编译出的静态库文件为hv_static.a
.是否需要统一?
The text was updated successfully, but these errors were encountered: