[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 list(APPEND SOURCE
8 cryptnet_main.c
9 ${CMAKE_CURRENT_BINARY_DIR}/cryptnet.def)
10
11 add_library(cryptnet SHARED ${SOURCE})
12
13 set_module_type(cryptnet win32dll)
14
15 target_link_libraries(cryptnet wine)
16
17 add_importlibs(cryptnet
18 crypt32
19 wininet
20 msvcrt
21 kernel32
22 ntdll)
23
24
25 add_cab_target(cryptnet 1)