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
For some reason, the -g flag is not in CMake's $<TARGET_PROPERTY:xxx,COMPILE_FLAGS> nor
...COMPILE_OPTIONS, and so doesn't get written to the .rsp file.
This results in a warning of different options for pch and regular source compile.
Temporarily adding -g to the export_all_flags function fixed the warning.
Do you know Is there some other CMake property for the debug flag?
The text was updated successfully, but these errors were encountered:
For some reason, the
-g
flag is not in CMake's$<TARGET_PROPERTY:xxx,COMPILE_FLAGS>
nor...
COMPILE_OPTIONS
, and so doesn't get written to the.rsp
file.This results in a warning of different options for pch and regular source compile.
Temporarily adding
-g
to theexport_all_flags
function fixed the warning.Do you know Is there some other CMake property for the debug flag?
The text was updated successfully, but these errors were encountered: