Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #2089 from rathena/refactor/windows-build
* Dropped support for VS older than 2012 * Delete all solutions * Added a new global VS2013 solution (2015+ also supported by this solution) * Added x64 build support for Windows (Thanks to @Lemongrass3110)
- Loading branch information
Showing
with
21,057 additions
and 16,598 deletions.
- +14 −0 .gitignore
- +171 −0 3rdparty/libconfig/libconfig.vcxproj
- +53 −0 3rdparty/libconfig/libconfig.vcxproj.filters
- +158 −0 3rdparty/mt19937ar/mt19937ar.vcxproj
- +23 −0 3rdparty/mt19937ar/mt19937ar.vcxproj.filters
- +114 −0 3rdparty/mysql/include/big_endian.h
- +70 −0 3rdparty/mysql/include/binary_log_types.h
- +97 −0 3rdparty/mysql/include/byte_order_generic.h
- +56 −0 3rdparty/mysql/include/byte_order_generic_x86.h
- +0 −470 3rdparty/mysql/include/config-win.h
- +137 −0 3rdparty/mysql/include/decimal.h
- +113 −0 3rdparty/mysql/include/errmsg.h
- +156 −0 3rdparty/mysql/include/keycache.h
- +93 −0 3rdparty/mysql/include/little_endian.h
- +531 −218 3rdparty/mysql/include/m_ctype.h
- +344 −0 3rdparty/mysql/include/m_string.h
- +22 −9 3rdparty/mysql/include/my_alloc.h
- +213 −0 3rdparty/mysql/include/my_byteorder.h
- +64 −0 3rdparty/mysql/include/my_command.h
- +178 −0 3rdparty/mysql/include/my_compiler.h
- +454 −0 3rdparty/mysql/include/my_config.h
- +216 −72 3rdparty/mysql/include/my_dbug.h
- +93 −0 3rdparty/mysql/include/my_dir.h
- +149 −0 3rdparty/mysql/include/my_getopt.h
- +497 −1,022 3rdparty/mysql/include/my_global.h
- +5 −6 3rdparty/mysql/include/my_list.h
- +0 −717 3rdparty/mysql/include/my_pthread.h
- +517 −461 3rdparty/mysql/include/my_sys.h
- +186 −0 3rdparty/mysql/include/my_thread.h
- +107 −0 3rdparty/mysql/include/my_thread_local.h
- +96 −0 3rdparty/mysql/include/my_xml.h
- +174 −266 3rdparty/mysql/include/mysql.h
- +28 −0 3rdparty/mysql/include/mysql/client_authentication.h
- +202 −0 3rdparty/mysql/include/mysql/client_plugin.h
- +39 −0 3rdparty/mysql/include/mysql/client_plugin.h.pp
- +36 −0 3rdparty/mysql/include/mysql/get_password.h
- +33 −0 3rdparty/mysql/include/mysql/mysql_lex_string.h
- +143 −0 3rdparty/mysql/include/mysql/plugin_auth_common.h
- +349 −0 3rdparty/mysql/include/mysql/plugin_trace.h
- +1,433 −0 3rdparty/mysql/include/mysql/psi/mysql_file.h
- +96 −0 3rdparty/mysql/include/mysql/psi/mysql_idle.h
- +121 −0 3rdparty/mysql/include/mysql/psi/mysql_mdl.h
- +62 −0 3rdparty/mysql/include/mysql/psi/mysql_memory.h
- +88 −0 3rdparty/mysql/include/mysql/psi/mysql_ps.h
- +1,255 −0 3rdparty/mysql/include/mysql/psi/mysql_socket.h
- +97 −0 3rdparty/mysql/include/mysql/psi/mysql_sp.h
- +198 −0 3rdparty/mysql/include/mysql/psi/mysql_stage.h
- +235 −0 3rdparty/mysql/include/mysql/psi/mysql_statement.h
- +142 −0 3rdparty/mysql/include/mysql/psi/mysql_table.h
- +1,323 −0 3rdparty/mysql/include/mysql/psi/mysql_thread.h
- +213 −0 3rdparty/mysql/include/mysql/psi/mysql_transaction.h
- +2,980 −0 3rdparty/mysql/include/mysql/psi/psi.h
- +155 −0 3rdparty/mysql/include/mysql/psi/psi_base.h
- +155 −0 3rdparty/mysql/include/mysql/psi/psi_memory.h
- +101 −0 3rdparty/mysql/include/mysql/service_my_snprintf.h
- +81 −0 3rdparty/mysql/include/mysql/service_mysql_alloc.h
- +277 −116 3rdparty/mysql/include/mysql_com.h
- +41 −0 3rdparty/mysql/include/mysql_com_server.h
- +29 −0 3rdparty/mysql/include/mysql_embed.h
- +4 −5 3rdparty/mysql/include/mysql_time.h
- +15 −13 3rdparty/mysql/include/mysql_version.h
- +1,082 −0 3rdparty/mysql/include/mysqld_ername.h
- +1,089 −0 3rdparty/mysql/include/mysqld_error.h
- +0 −159 3rdparty/mysql/include/raid.h
- +206 −0 3rdparty/mysql/include/sql_common.h
- +255 −0 3rdparty/mysql/include/sql_state.h
- +63 −0 3rdparty/mysql/include/sslopt-case.h
- +67 −0 3rdparty/mysql/include/sslopt-longopts.h
- +75 −0 3rdparty/mysql/include/sslopt-vars.h
- +201 −0 3rdparty/mysql/include/thr_cond.h
- +227 −0 3rdparty/mysql/include/thr_mutex.h
- +214 −0 3rdparty/mysql/include/thr_rwlock.h
- +25 −5 3rdparty/mysql/include/typelib.h
- BIN 3rdparty/mysql/lib/Win32/libmysql.dll
- BIN 3rdparty/mysql/lib/Win32/libmysql.lib
- BIN 3rdparty/mysql/lib/libmysql.lib
- BIN 3rdparty/mysql/lib/x64/libmysql.dll
- BIN 3rdparty/mysql/lib/x64/libmysql.lib
- 0 3rdparty/mysql/{mysql-5.0.20 → mysql-6.1.9}
- +216 −56 3rdparty/pcre/include/pcre.h
- BIN 3rdparty/pcre/lib/Win32/pcre8.dll
- BIN 3rdparty/pcre/lib/Win32/pcre8.lib
- BIN 3rdparty/pcre/lib/libpcre.dll.a
- BIN 3rdparty/pcre/lib/pcre.lib
- BIN 3rdparty/pcre/lib/x64/pcre8.dll
- BIN 3rdparty/pcre/lib/x64/pcre8.lib
- 0 3rdparty/pcre/{pcre-8.30 → pcre-8.33.0.1.utf8}
- +2 −0 3rdparty/zlib/include/zconf.h
- BIN 3rdparty/zlib/lib/Win32/zlib.dll
- BIN 3rdparty/zlib/lib/Win32/zlib.lib
- BIN 3rdparty/zlib/lib/x64/zlib.dll
- BIN 3rdparty/zlib/lib/x64/zlib.lib
- BIN 3rdparty/zlib/lib/zdll.lib
- +3 −22 appveyor.yml
- BIN dbghelp.dll
- BIN libmysql.dll
- BIN pcre3.dll
- +0 −37 rAthena-10.sln
- +0 −38 rAthena-12.sln
- +0 −40 rAthena-13.sln
- +0 −40 rAthena-14.sln
- +0 −40 rAthena-15.sln
- +0 −37 rAthena-9.sln
- +139 −0 rAthena.sln
- +210 −0 src/char/char-server.vcxproj
- +119 −0 src/char/char-server.vcxproj.filters
- +211 −0 src/common/common-minicore.vcxproj
- +170 −0 src/common/common-minicore.vcxproj.filters
- +223 −0 src/common/common.vcxproj
- +170 −0 src/common/common.vcxproj.filters
- +190 −0 src/login/login-server.vcxproj
- +59 −0 src/login/login-server.vcxproj.filters
- +361 −0 src/map/map-server.vcxproj
- +257 −0 src/map/map-server.vcxproj.filters
- +173 −0 src/tool/map-cache.vcxproj
- +18 −0 src/tool/map-cache.vcxproj.filters
- 0 { → tools}/charserv.bat
- 0 { → tools}/logserv.bat
- 0 { → tools}/mapcache.bat
- 0 { → tools}/mapserv.bat
- 0 { → tools}/runserver.bat
- 0 { → tools}/serv.bat
- +0 −230 vcproj-10/char-server.vcxproj
- +0 −303 vcproj-10/char-server.vcxproj.filters
- +0 −212 vcproj-10/login-server.vcxproj
- +0 −243 vcproj-10/login-server.vcxproj.filters
- +0 −369 vcproj-10/map-server.vcxproj
- +0 −474 vcproj-10/map-server.vcxproj.filters
- +0 −151 vcproj-10/mapcache.vcxproj
- +0 −75 vcproj-10/mapcache.vcxproj.filters
- +0 −233 vcproj-12/char-server.vcxproj
- +0 −303 vcproj-12/char-server.vcxproj.filters
- +0 −216 vcproj-12/login-server.vcxproj
- +0 −243 vcproj-12/login-server.vcxproj.filters
- +0 −373 vcproj-12/map-server.vcxproj
- +0 −474 vcproj-12/map-server.vcxproj.filters
- +0 −155 vcproj-12/mapcache.vcxproj
- +0 −75 vcproj-12/mapcache.vcxproj.filters
- +0 −232 vcproj-13/char-server.vcxproj
- +0 −303 vcproj-13/char-server.vcxproj.filters
- +0 −216 vcproj-13/login-server.vcxproj
- +0 −243 vcproj-13/login-server.vcxproj.filters
- +0 −373 vcproj-13/map-server.vcxproj
- +0 −474 vcproj-13/map-server.vcxproj.filters
- +0 −155 vcproj-13/mapcache.vcxproj
- +0 −75 vcproj-13/mapcache.vcxproj.filters
- +0 −230 vcproj-14/char-server.vcxproj
- +0 −303 vcproj-14/char-server.vcxproj.filters
- +0 −214 vcproj-14/login-server.vcxproj
- +0 −243 vcproj-14/login-server.vcxproj.filters
- +0 −371 vcproj-14/map-server.vcxproj
- +0 −474 vcproj-14/map-server.vcxproj.filters
- +0 −153 vcproj-14/mapcache.vcxproj
- +0 −75 vcproj-14/mapcache.vcxproj.filters
- +0 −230 vcproj-15/char-server.vcxproj
- +0 −303 vcproj-15/char-server.vcxproj.filters
- +0 −214 vcproj-15/login-server.vcxproj
- +0 −243 vcproj-15/login-server.vcxproj.filters
- +0 −369 vcproj-15/map-server.vcxproj
- +0 −474 vcproj-15/map-server.vcxproj.filters
- +0 −153 vcproj-15/mapcache.vcxproj
- +0 −75 vcproj-15/mapcache.vcxproj.filters
- +0 −591 vcproj-9/char-server.vcproj
- +0 −212 vcproj-9/dbghelpplug.vcproj
- +0 −514 vcproj-9/login-server.vcproj
- +0 −819 vcproj-9/map-server.vcproj
- +0 −289 vcproj-9/mapcache.vcproj
- BIN zlib1.dll
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -0,0 +1,171 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <ItemGroup Label="ProjectConfigurations"> | ||
| <ProjectConfiguration Include="Debug|Win32"> | ||
| <Configuration>Debug</Configuration> | ||
| <Platform>Win32</Platform> | ||
| </ProjectConfiguration> | ||
| <ProjectConfiguration Include="Release|Win32"> | ||
| <Configuration>Release</Configuration> | ||
| <Platform>Win32</Platform> | ||
| </ProjectConfiguration> | ||
| <ProjectConfiguration Include="Debug|x64"> | ||
| <Configuration>Debug</Configuration> | ||
| <Platform>x64</Platform> | ||
| </ProjectConfiguration> | ||
| <ProjectConfiguration Include="Release|x64"> | ||
| <Configuration>Release</Configuration> | ||
| <Platform>x64</Platform> | ||
| </ProjectConfiguration> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <ClInclude Include="grammar.h" /> | ||
| <ClInclude Include="libconfig.h" /> | ||
| <ClInclude Include="parsectx.h" /> | ||
| <ClInclude Include="scanctx.h" /> | ||
| <ClInclude Include="scanner.h" /> | ||
| <ClInclude Include="strbuf.h" /> | ||
| <ClInclude Include="wincompat.h" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <ClCompile Include="grammar.c" /> | ||
| <ClCompile Include="libconfig.c" /> | ||
| <ClCompile Include="scanctx.c" /> | ||
| <ClCompile Include="scanner.c" /> | ||
| <ClCompile Include="strbuf.c" /> | ||
| </ItemGroup> | ||
| <PropertyGroup Label="Globals"> | ||
| <ProjectGuid>{F6CC5F60-BD13-41B1-81D3-822A45EC0DBD}</ProjectGuid> | ||
| <Keyword>Win32Proj</Keyword> | ||
| <RootNamespace>libconfig</RootNamespace> | ||
| <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> | ||
| </PropertyGroup> | ||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
| <ConfigurationType>StaticLibrary</ConfigurationType> | ||
| <UseDebugLibraries>true</UseDebugLibraries> | ||
| <PlatformToolset>v120</PlatformToolset> | ||
| <CharacterSet>MultiByte</CharacterSet> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
| <ConfigurationType>StaticLibrary</ConfigurationType> | ||
| <UseDebugLibraries>false</UseDebugLibraries> | ||
| <PlatformToolset>v120</PlatformToolset> | ||
| <WholeProgramOptimization>true</WholeProgramOptimization> | ||
| <CharacterSet>MultiByte</CharacterSet> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | ||
| <ConfigurationType>StaticLibrary</ConfigurationType> | ||
| <UseDebugLibraries>true</UseDebugLibraries> | ||
| <PlatformToolset>v120</PlatformToolset> | ||
| <CharacterSet>MultiByte</CharacterSet> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | ||
| <ConfigurationType>StaticLibrary</ConfigurationType> | ||
| <UseDebugLibraries>false</UseDebugLibraries> | ||
| <PlatformToolset>v120</PlatformToolset> | ||
| <WholeProgramOptimization>true</WholeProgramOptimization> | ||
| <CharacterSet>MultiByte</CharacterSet> | ||
| </PropertyGroup> | ||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
| <ImportGroup Label="ExtensionSettings"> | ||
| </ImportGroup> | ||
| <ImportGroup Label="Shared"> | ||
| </ImportGroup> | ||
| <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
| </ImportGroup> | ||
| <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
| </ImportGroup> | ||
| <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
| </ImportGroup> | ||
| <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
| </ImportGroup> | ||
| <PropertyGroup Label="UserMacros" /> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
| <OutDir>$(SolutionDir).vs\build\</OutDir> | ||
| <IntDir>$(SolutionDir).vs\build\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
| <OutDir>$(SolutionDir).vs\build\</OutDir> | ||
| <IntDir>$(SolutionDir).vs\build\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
| <OutDir>$(SolutionDir).vs\build\</OutDir> | ||
| <IntDir>$(SolutionDir).vs\build\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
| <OutDir>$(SolutionDir).vs\build\</OutDir> | ||
| <IntDir>$(SolutionDir).vs\build\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir> | ||
| </PropertyGroup> | ||
| <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
| <ClCompile> | ||
| <PrecompiledHeader> | ||
| </PrecompiledHeader> | ||
| <WarningLevel>Level3</WarningLevel> | ||
| <Optimization>Disabled</Optimization> | ||
| <PreprocessorDefinitions>YY_USE_CONST;LIBCONFIG_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
| </ClCompile> | ||
| <Link> | ||
| <SubSystem>Windows</SubSystem> | ||
| <GenerateDebugInformation>true</GenerateDebugInformation> | ||
| </Link> | ||
| </ItemDefinitionGroup> | ||
| <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | ||
| <ClCompile> | ||
| <PrecompiledHeader> | ||
| </PrecompiledHeader> | ||
| <WarningLevel>Level3</WarningLevel> | ||
| <Optimization>Disabled</Optimization> | ||
| <PreprocessorDefinitions>YY_USE_CONST;LIBCONFIG_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
| </ClCompile> | ||
| <Link> | ||
| <SubSystem>Windows</SubSystem> | ||
| <GenerateDebugInformation>true</GenerateDebugInformation> | ||
| </Link> | ||
| </ItemDefinitionGroup> | ||
| <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
| <ClCompile> | ||
| <WarningLevel>Level3</WarningLevel> | ||
| <PrecompiledHeader> | ||
| </PrecompiledHeader> | ||
| <Optimization>MaxSpeed</Optimization> | ||
| <FunctionLevelLinking>true</FunctionLevelLinking> | ||
| <IntrinsicFunctions>true</IntrinsicFunctions> | ||
| <PreprocessorDefinitions>YY_USE_CONST;LIBCONFIG_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
| </ClCompile> | ||
| <Link> | ||
| <SubSystem>Windows</SubSystem> | ||
| <GenerateDebugInformation>true</GenerateDebugInformation> | ||
| <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
| <OptimizeReferences>true</OptimizeReferences> | ||
| </Link> | ||
| </ItemDefinitionGroup> | ||
| <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | ||
| <ClCompile> | ||
| <WarningLevel>Level3</WarningLevel> | ||
| <PrecompiledHeader> | ||
| </PrecompiledHeader> | ||
| <Optimization>MaxSpeed</Optimization> | ||
| <FunctionLevelLinking>true</FunctionLevelLinking> | ||
| <IntrinsicFunctions>true</IntrinsicFunctions> | ||
| <PreprocessorDefinitions>YY_USE_CONST;LIBCONFIG_STATIC;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
| </ClCompile> | ||
| <Link> | ||
| <SubSystem>Windows</SubSystem> | ||
| <GenerateDebugInformation>true</GenerateDebugInformation> | ||
| <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
| <OptimizeReferences>true</OptimizeReferences> | ||
| </Link> | ||
| </ItemDefinitionGroup> | ||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
| <ImportGroup Label="ExtensionTargets"> | ||
| </ImportGroup> | ||
| </Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -0,0 +1,53 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <ItemGroup> | ||
| <Filter Include="Source Files"> | ||
| <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | ||
| <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | ||
| </Filter> | ||
| <Filter Include="Header Files"> | ||
| <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | ||
| <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions> | ||
| </Filter> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <ClInclude Include="grammar.h"> | ||
| <Filter>Header Files</Filter> | ||
| </ClInclude> | ||
| <ClInclude Include="libconfig.h"> | ||
| <Filter>Header Files</Filter> | ||
| </ClInclude> | ||
| <ClInclude Include="parsectx.h"> | ||
| <Filter>Header Files</Filter> | ||
| </ClInclude> | ||
| <ClInclude Include="scanctx.h"> | ||
| <Filter>Header Files</Filter> | ||
| </ClInclude> | ||
| <ClInclude Include="scanner.h"> | ||
| <Filter>Header Files</Filter> | ||
| </ClInclude> | ||
| <ClInclude Include="strbuf.h"> | ||
| <Filter>Header Files</Filter> | ||
| </ClInclude> | ||
| <ClInclude Include="wincompat.h"> | ||
| <Filter>Header Files</Filter> | ||
| </ClInclude> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <ClCompile Include="grammar.c"> | ||
| <Filter>Source Files</Filter> | ||
| </ClCompile> | ||
| <ClCompile Include="libconfig.c"> | ||
| <Filter>Source Files</Filter> | ||
| </ClCompile> | ||
| <ClCompile Include="scanctx.c"> | ||
| <Filter>Source Files</Filter> | ||
| </ClCompile> | ||
| <ClCompile Include="scanner.c"> | ||
| <Filter>Source Files</Filter> | ||
| </ClCompile> | ||
| <ClCompile Include="strbuf.c"> | ||
| <Filter>Source Files</Filter> | ||
| </ClCompile> | ||
| </ItemGroup> | ||
| </Project> |
Oops, something went wrong.