1# Distributed under the OSI-approved BSD 3-Clause License. See accompanying 2# file Copyright.txt or https://cmake.org/licensing for details. 3 4 5# This module is shared by multiple languages; use include blocker. 6if(__WINDOWS_INTEL) 7 return() 8endif() 9set(__WINDOWS_INTEL 1) 10 11include(Platform/Windows-MSVC) 12macro(__windows_compiler_intel lang) 13 __windows_compiler_msvc(${lang}) 14 15 set(CMAKE_DEPFILE_FLAGS_${lang} "-QMMD -QMT <DEP_TARGET> -QMF <DEP_FILE>") 16 set(CMAKE_${lang}_DEPFILE_FORMAT gcc) 17endmacro() 18