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
{{ message }}
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.
Hm, can we set "property" in easy way or rewrite it?
# Configure the ccache as compiler launcherfind_program(CCACHE_FOUND ccache)
if(USE_CCACHE AND CCACHE_FOUND)
set_property(GLOBALPROPERTY RULE_LAUNCH_COMPILE ccache)
endif()
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Increase cmake minimum version to cmake >= 3.18
Rationale
Since 3.18 Cmake supports
REQUIRED
parameter infind_program()
, which would simplify cmake files in many places all over codebase.instead of:
may be just:
The text was updated successfully, but these errors were encountered: