mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-12-24 22:39:07 +00:00
9f1d019352
Replace the bash selftest plumbing with CTest. To use the selftests, build with -DLWS_WITH_MINIMAL_EXAMPLES=1 and `CTEST_OUTPUT_ON_FAILURE=1 make test` or just `make test`. To disable tests that require internet access, also give -DLWS_CTEST_INTERNET_AVAILABLE=0 Remove travis and appveyor scripts on master. Remove travis and appveyor decals on README.md.
36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
#include <winver.h>
|
|
|
|
#define LWS_NUMVERSION @LWS_LIBRARY_VERSION_MAJOR@,@LWS_LIBRARY_VERSION_MINOR@,0
|
|
#define LWS_VERSION @LWS_LIBRARY_VERSION_MAJOR@,@LWS_LIBRARY_VERSION_MINOR@,@LWS_LIBRARY_VERSION_PATCH@,0
|
|
#define LWS_VERSION_STR "@LWS_LIBRARY_VERSION_MAJOR@.@LWS_LIBRARY_VERSION_MINOR@.@LWS_LIBRARY_VERSION_PATCH@\0"
|
|
#define LWS_PACKAGE_NAME "@PACKAGE@\0"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION LWS_NUMVERSION
|
|
PRODUCTVERSION LWS_NUMVERSION
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
FILEFLAGS 0
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "ProductName", LWS_PACKAGE_NAME
|
|
VALUE "ProductVersion", LWS_VERSION_STR
|
|
VALUE "FileVersion", LWS_VERSION_STR
|
|
VALUE "FileDescription", "Libwebsockets is a lightweight pure C library built to use minimal CPU and memory resources, and provide fast throughput in both directions as client or server.\0"
|
|
VALUE "InternalName", "websockets.dll\0"
|
|
VALUE "OriginalFilename", "websockets.dll\0"
|
|
VALUE "CompanyName", "Open Source Software community LGPL\0"
|
|
VALUE "LegalCopyright", "Copyright (C) Project contributors\0"
|
|
VALUE "Comments", "https://libwebsockets.org\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|