mirror of https://github.com/rspamd/rspamd.git
Rapid spam filtering system
https://rspamd.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
658 B
19 lines
658 B
# Check for assembler option specified
|
|
|
|
MACRO(asm_op output_var description)
|
|
IF(NOT ${output_var})
|
|
file(WRITE "${CMAKE_BINARY_DIR}/asm.S" "${ASM_CODE}")
|
|
try_compile(HAVE_OP
|
|
"${CMAKE_BINARY_DIR}"
|
|
"${CMAKE_BINARY_DIR}/asm.S"
|
|
CMAKE_FLAGS "-DCMAKE_ASM_LINK_EXECUTABLE='echo not linking now...'")
|
|
|
|
if(HAVE_OP)
|
|
MESSAGE(STATUS "Compilation of ${description} asm set is supported")
|
|
else()
|
|
MESSAGE(STATUS "Compilation of ${description} asm set is -NOT- supported")
|
|
endif()
|
|
|
|
set(${output_var} "${HAVE_OP}" CACHE INTERNAL "${description}")
|
|
ENDIF()
|
|
ENDMACRO()
|