- Remove some unneeded pdef files.
[reactos.git] / dll / win32 / bcrypt / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(bcrypt.dll bcrypt.spec)
6
7 add_library(bcrypt SHARED
8 bcrypt_main.c
9 version.rc
10 ${CMAKE_CURRENT_BINARY_DIR}/bcrypt.def)
11
12 set_module_type(bcrypt win32dll)
13
14 target_link_libraries(bcrypt wine)
15
16 add_importlibs(bcrypt msvcrt kernel32 ntdll)
17
18
19 add_cab_target(bcrypt 1)