mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[CMAKE]
- ufat, ufatx, uext2 and untfs don't really need to link to kernel32 and msvcrt. svn path=/trunk/; revision=52845
This commit is contained in:
parent
1b137b580f
commit
9142818431
4 changed files with 4 additions and 4 deletions
|
@ -10,5 +10,5 @@ add_library(uext2 SHARED ${SOURCE})
|
|||
|
||||
set_module_type(uext2 win32dll)
|
||||
target_link_libraries(uext2 ext2lib)
|
||||
add_importlibs(uext2 msvcrt kernel32 ntdll)
|
||||
add_importlibs(uext2 ntdll)
|
||||
add_cd_file(TARGET uext2 DESTINATION reactos/system32 FOR all)
|
||||
|
|
|
@ -10,5 +10,5 @@ add_library(ufat SHARED ${SOURCE})
|
|||
|
||||
set_module_type(ufat win32dll)
|
||||
target_link_libraries(ufat vfatlib)
|
||||
add_importlibs(ufat msvcrt kernel32 ntdll)
|
||||
add_importlibs(ufat ntdll)
|
||||
add_cd_file(TARGET ufat DESTINATION reactos/system32 FOR all)
|
||||
|
|
|
@ -10,7 +10,7 @@ add_library(ufatx SHARED ${SOURCE})
|
|||
set_entrypoint(ufatx 0)
|
||||
|
||||
target_link_libraries(ufatx vfatxlib)
|
||||
add_importlibs(ufatx msvcrt kernel32 ntdll)
|
||||
add_importlibs(ufatx ntdll)
|
||||
add_importlib_target(ufatx.spec)
|
||||
add_dependencies(ufatx psdk)
|
||||
add_cd_file(TARGET ufatx DESTINATION reactos/system32 FOR all)
|
||||
|
|
|
@ -10,5 +10,5 @@ add_library(untfs SHARED ${SOURCE})
|
|||
|
||||
set_module_type(untfs win32dll)
|
||||
target_link_libraries(untfs ntfslib)
|
||||
add_importlibs(untfs msvcrt kernel32 ntdll)
|
||||
add_importlibs(untfs ntdll)
|
||||
add_cd_file(TARGET untfs DESTINATION reactos/system32 FOR all)
|
||||
|
|
Loading…
Reference in a new issue