From 18bfd0b2a2798fa958b731be42728cffba33d6ee Mon Sep 17 00:00:00 2001 From: Memphiz Date: Mon, 13 Jan 2014 10:20:40 +0100 Subject: [PATCH] [win32] - add new missing files to vs project --- win32/libnfs/libnfs.vcxproj | 14 +++- win32/libnfs/libnfs.vcxproj.filters | 26 ++++++- win32/libnfs/version.rc | 106 ++++++++++++++++++++++++++++ 3 files changed, 143 insertions(+), 3 deletions(-) create mode 100644 win32/libnfs/version.rc diff --git a/win32/libnfs/libnfs.vcxproj b/win32/libnfs/libnfs.vcxproj index 978eedd..b1d74d8 100644 --- a/win32/libnfs/libnfs.vcxproj +++ b/win32/libnfs/libnfs.vcxproj @@ -137,7 +137,7 @@ rpcgen.exe -h $(ProjectDir)..\..\portmap\libnfs-raw-portmap.x > $(ProjectDir rpcgen.exe -c $(ProjectDir)..\..\portmap\libnfs-raw-portmap.x > $(ProjectDir)..\..\portmap\libnfs-raw-portmap.c copy $(ProjectDir)..\..\mount\mount.x $(ProjectDir)..\..\mount\libnfs-raw-mount.x -rpcgen.exe -h $(ProjectDir)..\..\mount\libnfs-raw-mount.x > $(ProjectDir)..\..\mount\libnfs-raw-mount.h +rpcgen.exe -h $(ProjectDir)..\..\mount\libnfs-raw-mount.x > $(ProjectDir)..\..\mount\libnfs- rpcgen.exe -c $(ProjectDir)..\..\mount\libnfs-raw-mount.x > $(ProjectDir)..\..\mount\libnfs-raw-mount.c @@ -218,6 +218,10 @@ rpcgen.exe -c $(ProjectDir)..\..\mount\libnfs-raw-mount.x > $(ProjectDir)..\ + + + + @@ -225,8 +229,11 @@ rpcgen.exe -c $(ProjectDir)..\..\mount\libnfs-raw-mount.x > $(ProjectDir)..\ + + + @@ -235,7 +242,10 @@ rpcgen.exe -c $(ProjectDir)..\..\mount\libnfs-raw-mount.x > $(ProjectDir)..\ + + + - \ No newline at end of file + diff --git a/win32/libnfs/libnfs.vcxproj.filters b/win32/libnfs/libnfs.vcxproj.filters index 966f680..88ff3e4 100644 --- a/win32/libnfs/libnfs.vcxproj.filters +++ b/win32/libnfs/libnfs.vcxproj.filters @@ -59,6 +59,18 @@ Source Files + + Source Files + + + Source Files + + + Source Files + + + Source Files + @@ -79,8 +91,20 @@ Header Files + + Header Files + + + Header Files + + + Header Files + - \ No newline at end of file + + + + diff --git a/win32/libnfs/version.rc b/win32/libnfs/version.rc new file mode 100644 index 0000000..4cc3223 --- /dev/null +++ b/win32/libnfs/version.rc @@ -0,0 +1,106 @@ +// Microsoft Visual C++ generated resource script. +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 101 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "afxres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// Deutsch (Deutschland) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU) +LANGUAGE LANG_GERMAN, SUBLANG_GERMAN + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource1.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""afxres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 1,8,0,0 + PRODUCTVERSION 1,8,0,0 + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040704b0" + BEGIN + VALUE "CompanyName", "https://github.com/sahlberg/libnfs" + VALUE "FileDescription", "LIBNFS is a client library for accessing NFS shares over a network." + VALUE "FileVersion", "1.8.0.0" + VALUE "InternalName", "libnfs.dll" + VALUE "LegalCopyright", "Copyright (C) 2014" + VALUE "OriginalFilename", "libnfs.dll" + VALUE "ProductName", "libnfs" + VALUE "ProductVersion", "1.8.0.0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x407, 1200 + END +END + +#endif // Deutsch (Deutschland) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + -- 2.34.1