diff options
author | Brad King <brad.king@kitware.com> | 2009-09-01 17:55:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-01 17:55:13 (GMT) |
commit | 2eca4dd2d127ab8e7ba211a17139983bbef61802 (patch) | |
tree | 7d21495e251a32cac727b9552b1f9dad46dfb092 /Modules/Platform/Linux-Intel.cmake | |
parent | dc78838737a14a887e2932cb06a0adaaf8c80fef (diff) | |
download | CMake-2eca4dd2d127ab8e7ba211a17139983bbef61802.zip CMake-2eca4dd2d127ab8e7ba211a17139983bbef61802.tar.gz CMake-2eca4dd2d127ab8e7ba211a17139983bbef61802.tar.bz2 |
Use Intel for Linux flags only on Linux
The commit "Split Intel compiler information files" moved some Linux
specific flags into the platform-independent Intel compiler info files.
This moves them back.
Diffstat (limited to 'Modules/Platform/Linux-Intel.cmake')
-rw-r--r-- | Modules/Platform/Linux-Intel.cmake | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Modules/Platform/Linux-Intel.cmake b/Modules/Platform/Linux-Intel.cmake new file mode 100644 index 0000000..030f2c0 --- /dev/null +++ b/Modules/Platform/Linux-Intel.cmake @@ -0,0 +1,11 @@ +if(NOT XIAR) + set(_intel_xair_hints) + foreach(lang C CXX Fortran) + if(IS_ABSOLUTE "${CMAKE_${lang}_COMPILER}") + get_filename_component(_hint "${CMAKE_${lang}_COMPILER}" PATH) + list(APPEND _intel_xair_hints ${_hint}) + endif() + endforeach() + find_program(XIAR NAMES xiar HINTS ${_intel_xair_hints}) + mark_as_advanced(XIAR) +endif(NOT XIAR) |