CMakeASM-ATTInformation.cmake 299 B

12345678
  1. # support for AT&T syntax assemblers, e.g. GNU as
  2. SET(ASM_DIALECT "-ATT")
  3. # *.S files are supposed to be preprocessed, so they should not be passed to
  4. # assembler but should be processed by gcc
  5. SET(CMAKE_ASM${ASM_DIALECT}_SOURCE_FILE_EXTENSIONS s;asm)
  6. INCLUDE(CMakeASMInformation)
  7. SET(ASM_DIALECT)