Lines Matching +full:compiler +full:- +full:cache
3 # Use of this source code is governed by a BSD-style license
11 # String used to cache failed CXX flags.
14 # Checks C++ compiler for support of $cxx_flag. Adds $cxx_flag to
18 unset(CXX_FLAG_FOUND CACHE)
20 unset(CXX_FLAG_FAILED CACHE)
23 if(${CXX_FLAG_FOUND} EQUAL -1 AND ${CXX_FLAG_FAILED} EQUAL -1)
24 unset(CXX_FLAG_SUPPORTED CACHE)
25 message("Checking CXX compiler flag support for: " ${cxx_flag})
30 CACHE STRING "" FORCE)
34 CACHE STRING "" FORCE)
39 # Checks CXX compiler for support of $cxx_flag and terminates generation when
42 unset(CXX_FLAG_FOUND CACHE)
45 if(${CXX_FLAG_FOUND} EQUAL -1)
46 unset(LIBWEBM_HAVE_CXX_FLAG CACHE)
47 message("Checking CXX compiler flag support for: " ${cxx_flag})
56 CACHE STRING "" FORCE)
60 # Checks only non-MSVC targets for support of $cxx_flag.
67 # Adds $preproc_def to CXX compiler command line (as -D$preproc_def) if not
70 unset(PREPROC_DEF_FOUND CACHE)
73 if(${PREPROC_DEF_FOUND} EQUAL -1)
75 "${CMAKE_CXX_FLAGS} -D${preproc_def}"
76 CACHE STRING "" FORCE)