diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-06-28 13:14:27 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-06-28 13:14:27 (GMT) |
commit | 5b18b80b58a73814af8869cbfe17701156e913c3 (patch) | |
tree | 8ab1301ef8073a64ff091d7ea3a4f0e28dc56806 /Modules/CMakeTestASMCompiler.cmake | |
parent | 43de8c862868be38ce5ffe91edf09898ef8478cf (diff) | |
download | CMake-5b18b80b58a73814af8869cbfe17701156e913c3.zip CMake-5b18b80b58a73814af8869cbfe17701156e913c3.tar.gz CMake-5b18b80b58a73814af8869cbfe17701156e913c3.tar.bz2 |
ENH: initial support for assembler in cmake, needs testing by our users
Alex
Diffstat (limited to 'Modules/CMakeTestASMCompiler.cmake')
-rw-r--r-- | Modules/CMakeTestASMCompiler.cmake | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Modules/CMakeTestASMCompiler.cmake b/Modules/CMakeTestASMCompiler.cmake new file mode 100644 index 0000000..534b74b --- /dev/null +++ b/Modules/CMakeTestASMCompiler.cmake @@ -0,0 +1,11 @@ + +# This file is used by EnableLanguage in cmGlobalGenerator to +# determine that that selected ASM 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. +IF(CMAKE_ASM${ASM_DIALECT}_COMPILER) + SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_WORKS 1 CACHE INTERNAL "") +ELSE(CMAKE_ASM${ASM_DIALECT}_COMPILER) + SET(CMAKE_ASM${ASM_DIALECT}_COMPILER_WORKS 0 CACHE INTERNAL "") +ENDIF(CMAKE_ASM${ASM_DIALECT}_COMPILER) |