From c81b424d967203cc2d68e819dc330439e8880764 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 6 Apr 2020 23:07:51 +0200 Subject: Add msvc projects for utility programs Signed-off-by: David Oberhollenzer --- mkfs/gensquashfs.vcxproj | 181 +++++++++++++++++++++++++++++++++++++++ mkfs/gensquashfs.vcxproj.filters | 32 +++++++ mkfs/mkfs.h | 8 +- 3 files changed, 220 insertions(+), 1 deletion(-) create mode 100644 mkfs/gensquashfs.vcxproj create mode 100644 mkfs/gensquashfs.vcxproj.filters (limited to 'mkfs') diff --git a/mkfs/gensquashfs.vcxproj b/mkfs/gensquashfs.vcxproj new file mode 100644 index 0000000..ab72df8 --- /dev/null +++ b/mkfs/gensquashfs.vcxproj @@ -0,0 +1,181 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + {5DD8D757-AE1F-4633-869A-4C3B83DBA2A7} + gensquashfs + 10.0 + + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + false + + + true + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + + + true + + + false + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)\include\win32;$(SolutionDir)\include;%(AdditionalIncludeDirectories) + + + Console + true + true + true + $(TargetDir)\squashfs.lib;$(TargetDir)\libcompat.lib;$(TargetDir)\libcommon.lib;$(TargetDir)\libfstree.lib;$(TargetDir)\libtar.lib;$(TargetDir)\libutil.lib;%(AdditionalDependencies) + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)\include\win32;$(SolutionDir)\include;%(AdditionalIncludeDirectories) + + + Console + true + $(TargetDir)\squashfs.lib;$(TargetDir)\libcompat.lib;$(TargetDir)\libcommon.lib;$(TargetDir)\libfstree.lib;$(TargetDir)\libtar.lib;$(TargetDir)\libutil.lib;%(AdditionalDependencies) + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)\include\win32;$(SolutionDir)\include;%(AdditionalIncludeDirectories) + + + Console + true + $(TargetDir)\squashfs.lib;$(TargetDir)\libcompat.lib;$(TargetDir)\libcommon.lib;$(TargetDir)\libfstree.lib;$(TargetDir)\libtar.lib;$(TargetDir)\libutil.lib;%(AdditionalDependencies) + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + $(SolutionDir)\include\win32;$(SolutionDir)\include;%(AdditionalIncludeDirectories) + + + Console + true + true + true + $(TargetDir)\squashfs.lib;$(TargetDir)\libcompat.lib;$(TargetDir)\libcommon.lib;$(TargetDir)\libfstree.lib;$(TargetDir)\libtar.lib;$(TargetDir)\libutil.lib;%(AdditionalDependencies) + + + + + {4af21b3a-e7a0-48e6-951c-ca442410231f} + + + {45dec8f7-f154-4c3e-b616-a21fb3ca8cc2} + + + {4aa93963-2bc8-48fa-80b8-776b1f80bba5} + + + {7f732a8e-22a5-4dc1-b8db-7091d37be502} + + + {73712684-0f79-4ef6-950c-943c0456ff05} + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mkfs/gensquashfs.vcxproj.filters b/mkfs/gensquashfs.vcxproj.filters new file mode 100644 index 0000000..52637be --- /dev/null +++ b/mkfs/gensquashfs.vcxproj.filters @@ -0,0 +1,32 @@ + + + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;def;odl;idl;hpj;bat;asm;asmx + + + + + Source + + + Source + + + Source + + + Source + + + + + Headers + + + \ No newline at end of file diff --git a/mkfs/mkfs.h b/mkfs/mkfs.h index 1b767aa..fecbf8e 100644 --- a/mkfs/mkfs.h +++ b/mkfs/mkfs.h @@ -29,16 +29,22 @@ #include #endif +#ifdef HAVE_GETOPT_LONG #include +#endif + #include #include #include #include -#include #include #include #include +#if !defined(_WIN32) && !defined(__WINDOWS__) +#include +#endif + typedef struct { sqfs_writer_cfg_t cfg; unsigned int dirscan_flags; -- cgit v1.2.3