From e70f0c092cc636788005fd71aee9761ba7d763fe Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 22 Feb 2013 13:41:29 +0000 Subject: [PATCH] [HAL] Add more missing asm dependencies svn path=/trunk/; revision=58349 --- reactos/hal/halx86/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/hal/halx86/CMakeLists.txt b/reactos/hal/halx86/CMakeLists.txt index 774fefdabf1..daec98d5b98 100644 --- a/reactos/hal/halx86/CMakeLists.txt +++ b/reactos/hal/halx86/CMakeLists.txt @@ -125,6 +125,7 @@ if(ARCH STREQUAL "i386") if(NOT MSVC AND (CMAKE_VERSION VERSION_GREATER 2.8.7)) add_library(lib_hal_pic OBJECT ${HAL_PIC_SOURCE} ${HAL_PIC_ASM_SOURCE}) + add_dependencies(lib_hal_pic asm) endif() list(APPEND MINI_HAL_SOURCE @@ -183,7 +184,7 @@ if(ARCH STREQUAL "i386") target_link_libraries(hal libcntpr) add_importlibs(hal ntoskrnl) #add_pch(hal include/hal.h) - add_dependencies(hal psdk bugcodes) + add_dependencies(hal psdk bugcodes asm) set_entrypoint(hal HalInitSystem 8) set_subsystem(hal native) set_image_base(hal 0x00010000)