diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-28 09:14:27 -0400 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-28 09:14:27 -0400 |
commit | 5b18b80b58a73814af8869cbfe17701156e913c3 (patch) | |
tree | 8ab1301ef8073a64ff091d7ea3a4f0e28dc56806 /Modules/CMakeTestASM-ATTCompiler.cmake | |
parent | 43de8c862868be38ce5ffe91edf09898ef8478cf (diff) | |
download | cmake-5b18b80b58a73814af8869cbfe17701156e913c3.tar.gz |
ENH: initial support for assembler in cmake, needs testing by our users
Alex
Diffstat (limited to 'Modules/CMakeTestASM-ATTCompiler.cmake')
-rw-r--r-- | Modules/CMakeTestASM-ATTCompiler.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/CMakeTestASM-ATTCompiler.cmake b/Modules/CMakeTestASM-ATTCompiler.cmake new file mode 100644 index 0000000000..3844f5bdad --- /dev/null +++ b/Modules/CMakeTestASM-ATTCompiler.cmake @@ -0,0 +1,9 @@ + +# This file is used by EnableLanguage in cmGlobalGenerator to +# determine that that selected ASM-ATT compiler can actually compile +# and link the most basic of programs. If not, a fatal error +# is set and cmake stops processing commands and will not generate +# any makefiles or projects. +SET(ASM_DIALECT "-ATT") +INCLUDE(CMakeTestASMCompiler) +SET(ASM_DIALECT) |