You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
When installing libCVD with CMake on a Linux system, the library is exported as "libCVD.a".
It is currently not found by CVDConfig.cmake, which looks for a library bearing the name "libcvd.*" .
One fix for this is to add set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "cvd")
to CMakeLists.txt, to force the library name to libcvd.
Best regards
The text was updated successfully, but these errors were encountered:
Hello,
When installing libCVD with CMake on a Linux system, the library is exported as "libCVD.a".
It is currently not found by CVDConfig.cmake, which looks for a library bearing the name "libcvd.*" .
One fix for this is to add
set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "cvd")
to CMakeLists.txt, to force the library name to libcvd.
Best regards
The text was updated successfully, but these errors were encountered: