mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
99dcd6f71c
This is a part of the Partial Network Login Implementation PR.
23 lines
607 B
CMake
23 lines
607 B
CMake
|
|
spec2def(msv1_0.dll msv1_0.spec)
|
|
|
|
list(APPEND SOURCE
|
|
lsa.c
|
|
msv1_0.c
|
|
ntlm/global.c
|
|
ntlm/util.c
|
|
sam.c
|
|
user.c
|
|
usercontext.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/msv1_0_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/msv1_0.def)
|
|
|
|
add_library(msv1_0 MODULE ${SOURCE} msv1_0.rc)
|
|
set_module_type(msv1_0 win32dll UNICODE ENTRYPOINT 0)
|
|
target_link_libraries(msv1_0 wine ${PSEH_LIB})
|
|
add_delay_importlibs(msv1_0 samsrv lsasrv)
|
|
add_importlibs(msv1_0 advapi32 kernel32 ntdll)
|
|
add_dependencies(msv1_0 psdk)
|
|
add_pch(msv1_0 precomp.h SOURCE)
|
|
add_cd_file(TARGET msv1_0 DESTINATION reactos/system32 FOR all)
|