Add a module to determine if the intel linker supports manifest creation

This commit is contained in:
Bill Hoffman 2009-09-01 16:23:07 -04:00
parent 06332c883f
commit 76d059e3fb
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
INCLUDE("${CMAKE_PLATFORM_ROOT_BIN}/CMakeIntelInformation.cmake" OPTIONAL)
IF(NOT _INTEL_XILINK_TEST_RUN)
EXECUTE_PROCESS(COMMAND xilink /?
ERROR_VARIABLE _XILINK_ERR
OUTPUT_VARIABLE _XILINK_HELP)
IF(_XILINK_HELP MATCHES MANIFEST)
SET(_INTEL_COMPILER_SUPPORTS_MANIFEST 1)
ENDIF(_XILINK_HELP MATCHES MANIFEST)
IF(NOT EXISTS "${CMAKE_PLATFORM_ROOT_BIN}/CMakeIntelInformation.cmake")
FILE(WRITE ${CMAKE_PLATFORM_ROOT_BIN}/CMakeIntelInformation.cmake
"
SET(_INTEL_XILINK_TEST_RUN 1)
SET(_INTEL_COMPILER_SUPPORTS_MANIFEST ${_INTEL_COMPILER_SUPPORTS_MANIFEST})
")
ENDIF(NOT EXISTS "${CMAKE_PLATFORM_ROOT_BIN}/CMakeIntelInformation.cmake")
ENDIF(NOT _INTEL_XILINK_TEST_RUN)