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
Found a strange error in the outputted 'cmake_install.cmake', per below screenshot and quote (also visible on the current master branch, where I pulled fmt from a few hours ago);
Note the additional chars in the red-highlighted directory paths, like unresolved vars...? I believe that Lines 336 - 339 contain an unresolved var;
Also, in your root folder 'CMakeLists.txt' on current main branch (lines 240 - 242):
target_include_directories(fmt ${FMT_SYSTEM_HEADERS_ATTRIBUTE} PUBLIC
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:${FMT_INC_DIR}>)
(note the errant closing parenthesis - the final char in the quote).
Hi! :)
Found a strange error in the outputted 'cmake_install.cmake', per below screenshot and quote (also visible on the current master branch, where I pulled fmt from a few hours ago);
Note the additional chars in the red-highlighted directory paths, like unresolved vars...? I believe that Lines 336 - 339 contain an unresolved var;
Perhaps the FILES parameter should be resolved again(?):
Also, in your root folder 'CMakeLists.txt' on current main branch (lines 240 - 242):
(note the errant closing parenthesis - the final char in the quote).
The same appears for the header-only target:
Cheers and thanks so much for the awesome lib, and insights into the workings CMake!
The text was updated successfully, but these errors were encountered: