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
A good practice when writing a library with CMake is to export any public targets. This enables code reuse and the usage of find_package().
Currently the tortelini target isn't being exported nor installed.
We should check whenever the project is a root project (ie. "${CMAKE_SOURCE_DIR} == ${CMAKE_CURRENT_SOURCE_DIR}"), provide an install target and export it.
The text was updated successfully, but these errors were encountered:
A good practice when writing a library with CMake is to export any public targets. This enables code reuse and the usage of
find_package()
.Currently the
tortelini
target isn't being exported nor installed.We should check whenever the project is a root project (ie.
"${CMAKE_SOURCE_DIR} == ${CMAKE_CURRENT_SOURCE_DIR}"
), provide an install target and export it.The text was updated successfully, but these errors were encountered: