* Include the dummy source file for the PSEH ARM build too.

svn path=/trunk/; revision=63448
This commit is contained in:
Amine Khaldi 2014-05-25 19:04:21 +00:00
parent 47d4598769
commit b7ad4ef800

View file

@ -29,14 +29,13 @@ else()
list(APPEND ASM_SOURCE
i386/seh.s
i386/seh_prolog.s)
list(APPEND SOURCE dummy.c)
elseif(ARCH STREQUAL "amd64")
list(APPEND ASM_SOURCE
amd64/seh.s
amd64/seh_prolog.s)
list(APPEND SOURCE dummy.c)
endif()
list(APPEND SOURCE dummy.c)
add_asm_files(pseh_asm ${ASM_SOURCE})
add_library(pseh ${SOURCE} ${pseh_asm})
add_dependencies(pseh asm)