* Add sfc_os import lib target.
* Link sfc to sfc_os.
* Fixes msvc build.

svn path=/trunk/; revision=52302
This commit is contained in:
Amine Khaldi 2011-06-17 10:53:45 +00:00
parent 2e9d7c312f
commit 7bd8909ced
2 changed files with 2 additions and 3 deletions

View file

@ -10,7 +10,7 @@ add_library(sfc SHARED ${SOURCE})
set_module_type(sfc win32dll)
add_importlibs(sfc msvcrt kernel32 ntdll)
add_importlibs(sfc sfc_os msvcrt kernel32 ntdll)
add_pch(sfc precomp.h)
add_cd_file(TARGET sfc DESTINATION reactos/system32 FOR all)

View file

@ -9,8 +9,7 @@ list(APPEND SOURCE
add_library(sfc_os SHARED ${SOURCE})
set_module_type(sfc_os win32dll)
add_importlibs(sfc_os msvcrt kernel32 ntdll)
add_importlib_target(sfc_os.spec)
add_pch(sfc_os precomp.h)
add_cd_file(TARGET sfc_os DESTINATION reactos/system32 FOR all)