mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 15:08:14 +00:00
[MBEDTLS] Add a resource file for the dll. By Ismael Ferreras Morezuelas with minor changes by me. CORE-9065
svn path=/trunk/; revision=69397
This commit is contained in:
parent
cf9617f9dd
commit
af2f5e5742
2 changed files with 22 additions and 0 deletions
1
reactos/dll/3rdparty/mbedtls/CMakeLists.txt
vendored
1
reactos/dll/3rdparty/mbedtls/CMakeLists.txt
vendored
|
@ -76,6 +76,7 @@ list(APPEND src
|
|||
|
||||
add_library(mbedtls SHARED
|
||||
${src}
|
||||
mbedtls.rc
|
||||
${CMAKE_CURRENT_BINARY_DIR}/mbedtls.def)
|
||||
|
||||
set_module_type(mbedtls win32dll)
|
||||
|
|
21
reactos/dll/3rdparty/mbedtls/mbedtls.rc
vendored
Normal file
21
reactos/dll/3rdparty/mbedtls/mbedtls.rc
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
#include <windef.h>
|
||||
#define POLARSSL_CONFIG_H
|
||||
#include <polarssl/version.h>
|
||||
|
||||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION POLARSSL_VERSION_STRING_FULL
|
||||
#define REACTOS_STR_PRODUCT_NAME POLARSSL_VERSION_STRING_FULL
|
||||
#define REACTOS_STR_INTERNAL_NAME "mbedtls"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "mbedtls.dll"
|
||||
|
||||
#define REACTOS_FILEVERSION POLARSSL_VERSION_MAJOR, \
|
||||
POLARSSL_VERSION_MINOR, \
|
||||
POLARSSL_VERSION_PATCH, \
|
||||
0
|
||||
|
||||
#define REACTOS_STR_FILE_VERSION POLARSSL_VERSION_STRING
|
||||
|
||||
#include <reactos/version.rc>
|
||||
#include <reactos/manifest_dll.rc>
|
Loading…
Reference in a new issue