mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/win32-vd_agent
synced 2025-12-26 13:26:00 +00:00
Allows to build out-of-tree and have a clean working directory. Autoconf used to work with out-of-tree and "config.h" in the build directory as a "common" directory in the build directory was created, so including "../config.h" in version.rc and having "-I $(top_builddir)/common" used to work. CMake does not create "common" under the build directory so the "../config.h" inclusion fails. Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
/////////////////////////////////////////////////////////////////////////////
|
|
// English (U.S.) resources
|
|
|
|
#include "config.h"
|
|
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
|
#ifdef _WIN32
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
#pragma code_page(1252)
|
|
#endif //_WIN32
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version
|
|
//
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION RC_PRODUCTVERSION
|
|
PRODUCTVERSION RC_PRODUCTVERSION
|
|
FILEFLAGSMASK 0x17L
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 0x1L
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS 0x4L
|
|
FILETYPE 0x1L
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "CompanyName", "Red Hat Inc."
|
|
VALUE "FileDescription", FILE_DESCRIPTION
|
|
VALUE "FileVersion", RC_PRODUCTVERSION_STR
|
|
VALUE "InternalName", INTERNAL_NAME
|
|
VALUE "LegalCopyright", "Copyright (c) 2009-" BUILD_YEAR " Red Hat Inc. and/or its affiliates"
|
|
VALUE "OriginalFilename", ORIGINAL_FILENAME
|
|
VALUE "ProductName", "Red Hat Spice"
|
|
VALUE "ProductVersion", RC_PRODUCTVERSION_STR
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|
|
|
|
#endif // English (U.S.) resources
|
|
/////////////////////////////////////////////////////////////////////////////
|