2019-02-09 00:44:39 +00:00
|
|
|
|
|
|
|
spec2def(cryptext.dll cryptext.spec)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
cryptext.c
|
|
|
|
precomp.h)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(cryptext MODULE
|
2019-02-09 00:44:39 +00:00
|
|
|
${SOURCE}
|
|
|
|
cryptext.spec
|
2019-02-10 16:57:43 +00:00
|
|
|
cryptext.rc
|
2019-02-09 00:44:39 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/cryptext.def)
|
|
|
|
|
|
|
|
set_module_type(cryptext win32dll UNICODE)
|
|
|
|
target_link_libraries(cryptext uuid)
|
|
|
|
add_importlibs(cryptext cryptui crypt32 user32 msvcrt kernel32 ntdll)
|
|
|
|
add_pch(cryptext precomp.h SOURCE)
|
|
|
|
add_cd_file(TARGET cryptext DESTINATION reactos/system32 FOR all)
|