[CMAKE]
[reactos.git] / dll / win32 / wldap32 / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(wldap32.dll wldap32.spec)
6
7 add_library(wldap32 SHARED
8 add.c
9 ber.c
10 bind.c
11 compare.c
12 control.c
13 delete.c
14 dn.c
15 error.c
16 extended.c
17 init.c
18 main.c
19 misc.c
20 modify.c
21 modrdn.c
22 option.c
23 page.c
24 parse.c
25 rename.c
26 search.c
27 value.c
28 wldap32.rc
29 ${CMAKE_CURRENT_BINARY_DIR}/wldap32.def)
30
31 set_module_type(wldap32 win32dll)
32
33 target_link_libraries(wldap32 wine)
34
35 add_importlibs(wldap32 user32 kernel32 ntdll)
36
37 add_cab_target(wldap32 1)