reactos/dll/shellext/cryptext/CMakeLists.txt
Baruch Rutman d56d9c1aaa [CRYPTEXT] Make extension localizable, and add an icon for certificate files (#1347)
- Localize error message and shell file extension description.
- Added Hebrew resources.
- Added Icon.

The icon is the Tango icon named "certificate". If anybody has a idea for more fitting icon please recommend it.

Follow up of #1343

CORE-15736
2019-02-10 17:57:43 +01:00

19 lines
463 B
CMake

spec2def(cryptext.dll cryptext.spec)
list(APPEND SOURCE
cryptext.c
precomp.h)
add_library(cryptext SHARED
${SOURCE}
cryptext.spec
cryptext.rc
${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)