[USB-BRINGUP-TRUNK]
[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)
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 version.rc
20 ${CMAKE_CURRENT_BINARY_DIR}/rsaenh.def)
21
22 add_library(rsaenh SHARED ${SOURCE})
23
24 set_module_type(rsaenh win32dll)
25 target_link_libraries(rsaenh wine)
26 add_importlibs(rsaenh msvcrt crypt32 advapi32 kernel32 ntdll)
27 add_pch(rsaenh tomcrypt.h)
28 add_importlib_target(rsaenh.spec)
29 add_cd_file(TARGET rsaenh DESTINATION reactos/system32 FOR all)