[CMAKE]
authorAmine Khaldi <amine.khaldi@reactos.org>
Sun, 25 May 2014 19:04:21 +0000 (19:04 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sun, 25 May 2014 19:04:21 +0000 (19:04 +0000)
* Include the dummy source file for the PSEH ARM build too.

svn path=/trunk/; revision=63448

reactos/lib/pseh/CMakeLists.txt

index 1c26807..84ea2a2 100644 (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)