[CMAKE]
[reactos.git] / dll / win32 / cryptnet / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(cryptnet.dll cryptnet.spec)
6
7 add_library(cryptnet SHARED cryptnet_main.c ${CMAKE_CURRENT_BINARY_DIR}/cryptnet.def)
8
9 set_module_type(cryptnet win32dll)
10
11 target_link_libraries(cryptnet wine)
12
13 add_importlibs(cryptnet
14 crypt32
15 wininet
16 kernel32
17 ntdll)
18
19
20 add_cab_target(cryptnet 1)