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
If it is possible to bump minimum CMake version 3.0, then it would be useful to have Easylogging++ to export its include directory via using target_include_directories( easyloggingpp PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include ) instead of plain include_directories. This makes usage of the library easier (no need to specify include directory in end-user project), especially in cases where several sub-projects in the same tree need to use Easylogging++, and also is in line with the current best practices from CMake.
The text was updated successfully, but these errors were encountered:
If it is possible to bump minimum CMake version 3.0, then it would be useful to have Easylogging++ to export its include directory via using
target_include_directories( easyloggingpp PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include )
instead of plaininclude_directories
. This makes usage of the library easier (no need to specify include directory in end-user project), especially in cases where several sub-projects in the same tree need to use Easylogging++, and also is in line with the current best practices from CMake.The text was updated successfully, but these errors were encountered: