mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 01:00:06 +00:00
60a11ae666
- Some work on the dlls. By Alexey Komarov. svn path=/branches/cmake-bringup/; revision=49079
26 lines
595 B
CMake
26 lines
595 B
CMake
|
|
set_unicode()
|
|
|
|
include_directories(${REACTOS_BINARY_DIR}/include/reactos/idl)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys/lsass)
|
|
|
|
spec2def(lsasrv ${CMAKE_CURRENT_SOURCE_DIR}/lsasrv.spec ${CMAKE_CURRENT_BINARY_DIR}/lsasrv.def)
|
|
|
|
add_library(lsasrv SHARED
|
|
authport.c
|
|
lsarpc.c
|
|
lsasrv.c
|
|
privileges.c
|
|
sids.c
|
|
lsasrv.rc)
|
|
|
|
set_entrypoint(lsasrv 0)
|
|
|
|
target_link_libraries(lsasrv
|
|
${CMAKE_CURRENT_BINARY_DIR}/lsasrv.def
|
|
lsa_server
|
|
wine
|
|
pseh)
|
|
|
|
add_importlibs(lsasrv rpcrt4 kernel32 ntdll)
|
|
add_dependencies(lsasrv lsasrv_def psdk buildno_header)
|