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