Create this branch to work on loading of different Kernel-Debugger DLL providers...
[reactos.git] / dll / win32 / rsaenh / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(rsaenh.dll rsaenh.spec ADD_IMPORTLIB)
6
7 list(APPEND SOURCE
8 aes.c
9 des.c
10 handle.c
11 implglue.c
12 md2.c
13 mpi.c
14 rc2.c
15 rc4.c
16 rsa.c
17 rsaenh.c
18 sha2.c
19 rsrc.rc
20 ${CMAKE_CURRENT_BINARY_DIR}/rsaenh.def)
21
22 add_library(rsaenh SHARED ${SOURCE})
23 set_module_type(rsaenh win32dll)
24 target_link_libraries(rsaenh uuid wine)
25 add_importlibs(rsaenh msvcrt crypt32 advapi32 kernel32 ntdll)
26 add_pch(rsaenh tomcrypt.h)
27 add_cd_file(TARGET rsaenh DESTINATION reactos/system32 FOR all)