|
@@ -0,0 +1,224 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<Project DefaultTargets="Build" ToolsVersion="15.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>
|
|
|
+ <PropertyGroup Label="Globals">
|
|
|
+ <VCProjectVersion>15.0</VCProjectVersion>
|
|
|
+ <ProjectGuid>{EC12BE0A-025E-4168-9D2D-419A18CB2EF5}</ProjectGuid>
|
|
|
+ <Keyword>Win32Proj</Keyword>
|
|
|
+ <RootNamespace>gravity</RootNamespace>
|
|
|
+ <WindowsTargetPlatformVersion>10.0.14393.0</WindowsTargetPlatformVersion>
|
|
|
+ <ProjectName>GravityLang</ProjectName>
|
|
|
+ </PropertyGroup>
|
|
|
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>true</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v141</PlatformToolset>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>false</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v141</PlatformToolset>
|
|
|
+ <WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>true</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v141</PlatformToolset>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>false</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v141</PlatformToolset>
|
|
|
+ <WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
+ <CharacterSet>Unicode</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'">
|
|
|
+ <LinkIncremental>true</LinkIncremental>
|
|
|
+ <OutDir>$(SolutionDir)bin\</OutDir>
|
|
|
+ <IncludePath>$(ProjectDir);$(SolutionDir)src\compiler\;$(SolutionDir)src\utils\;$(SolutionDir)src\shared\;$(SolutionDir)src\runtime\;$(IncludePath)</IncludePath>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
+ <LinkIncremental>true</LinkIncremental>
|
|
|
+ <OutDir>$(SolutionDir)bin\</OutDir>
|
|
|
+ <IncludePath>$(ProjectDir);$(SolutionDir)src\compiler\;$(SolutionDir)src\utils\;$(SolutionDir)src\shared\;$(SolutionDir)src\runtime\;$(IncludePath)</IncludePath>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
+ <LinkIncremental>false</LinkIncremental>
|
|
|
+ <OutDir>$(SolutionDir)bin\</OutDir>
|
|
|
+ <IncludePath>$(ProjectDir);$(SolutionDir)src\compiler\;$(SolutionDir)src\utils\;$(SolutionDir)src\shared\;$(SolutionDir)src\runtime\;$(IncludePath)</IncludePath>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
+ <LinkIncremental>false</LinkIncremental>
|
|
|
+ <OutDir>$(SolutionDir)bin\</OutDir>
|
|
|
+ <IncludePath>$(ProjectDir);$(SolutionDir)src\compiler\;$(SolutionDir)src\utils\;$(SolutionDir)src\shared\;$(SolutionDir)src\runtime\;$(IncludePath)</IncludePath>
|
|
|
+ </PropertyGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
+ <ClCompile>
|
|
|
+ <PrecompiledHeader>
|
|
|
+ </PrecompiledHeader>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <Optimization>Disabled</Optimization>
|
|
|
+ <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;GRAVITY_EXPORTS;%(PreprocessorDefinitions);GRAVITY_API=__declspec(dllexport);inline=;_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions>
|
|
|
+ <DisableSpecificWarnings>4068;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
|
+ <RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
|
|
|
+ <InlineFunctionExpansion>Default</InlineFunctionExpansion>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
|
|
|
+ <ModuleDefinitionFile>$(ProjectDir)exports.def</ModuleDefinitionFile>
|
|
|
+ </Link>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
+ <ClCompile>
|
|
|
+ <PrecompiledHeader>
|
|
|
+ </PrecompiledHeader>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <Optimization>Disabled</Optimization>
|
|
|
+ <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;GRAVITY_EXPORTS;%(PreprocessorDefinitions);GRAVITY_API=__declspec(dllexport);inline=;_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions>
|
|
|
+ <DisableSpecificWarnings>4068;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
|
+ <RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
|
|
|
+ <InlineFunctionExpansion>Default</InlineFunctionExpansion>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
|
|
|
+ <ModuleDefinitionFile>$(ProjectDir)exports.def</ModuleDefinitionFile>
|
|
|
+ </Link>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
+ <ClCompile>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <PrecompiledHeader>
|
|
|
+ </PrecompiledHeader>
|
|
|
+ <Optimization>MaxSpeed</Optimization>
|
|
|
+ <FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
+ <IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
+ <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;GRAVITY_EXPORTS;%(PreprocessorDefinitions);GRAVITY_API=__declspec(dllexport);inline=;_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions>
|
|
|
+ <DisableSpecificWarnings>4068;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
|
+ <RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
|
|
|
+ <InlineFunctionExpansion>Default</InlineFunctionExpansion>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
+ <OptimizeReferences>true</OptimizeReferences>
|
|
|
+ <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
|
|
|
+ <ModuleDefinitionFile>$(ProjectDir)exports.def</ModuleDefinitionFile>
|
|
|
+ </Link>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
+ <ClCompile>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <PrecompiledHeader>
|
|
|
+ </PrecompiledHeader>
|
|
|
+ <Optimization>MaxSpeed</Optimization>
|
|
|
+ <FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
+ <IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
+ <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;GRAVITY_EXPORTS;%(PreprocessorDefinitions);GRAVITY_API=__declspec(dllexport);inline=;_CRT_SECURE_NO_WARNINGS</PreprocessorDefinitions>
|
|
|
+ <DisableSpecificWarnings>4068;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
|
+ <RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData>
|
|
|
+ <InlineFunctionExpansion>Default</InlineFunctionExpansion>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
+ <OptimizeReferences>true</OptimizeReferences>
|
|
|
+ <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
|
|
|
+ <ModuleDefinitionFile>$(ProjectDir)exports.def</ModuleDefinitionFile>
|
|
|
+ </Link>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <ClInclude Include="..\src\compiler\debug_macros.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_ast.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_codegen.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_compiler.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_ircode.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_lexer.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_optimizer.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_parser.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_semacheck1.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_semacheck2.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_symboltable.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_token.h" />
|
|
|
+ <ClInclude Include="..\src\compiler\gravity_visitor.h" />
|
|
|
+ <ClInclude Include="..\src\runtime\gravity_core.h" />
|
|
|
+ <ClInclude Include="..\src\runtime\gravity_vm.h" />
|
|
|
+ <ClInclude Include="..\src\runtime\gravity_vmmacros.h" />
|
|
|
+ <ClInclude Include="..\src\shared\gravity_array.h" />
|
|
|
+ <ClInclude Include="..\src\shared\gravity_delegate.h" />
|
|
|
+ <ClInclude Include="..\src\shared\gravity_hash.h" />
|
|
|
+ <ClInclude Include="..\src\shared\gravity_macros.h" />
|
|
|
+ <ClInclude Include="..\src\shared\gravity_memory.h" />
|
|
|
+ <ClInclude Include="..\src\shared\gravity_opcodes.h" />
|
|
|
+ <ClInclude Include="..\src\shared\gravity_value.h" />
|
|
|
+ <ClInclude Include="..\src\utils\gravity_debug.h" />
|
|
|
+ <ClInclude Include="..\src\utils\gravity_json.h" />
|
|
|
+ <ClInclude Include="..\src\utils\gravity_utils.h" />
|
|
|
+ <ClInclude Include="unistd.h" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_ast.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_codegen.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_compiler.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_ircode.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_lexer.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_optimizer.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_parser.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_semacheck1.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_semacheck2.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_symboltable.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_token.c" />
|
|
|
+ <ClCompile Include="..\src\compiler\gravity_visitor.c" />
|
|
|
+ <ClCompile Include="..\src\runtime\gravity_core.c" />
|
|
|
+ <ClCompile Include="..\src\runtime\gravity_vm.c" />
|
|
|
+ <ClCompile Include="..\src\shared\gravity_hash.c" />
|
|
|
+ <ClCompile Include="..\src\shared\gravity_memory.c" />
|
|
|
+ <ClCompile Include="..\src\shared\gravity_value.c" />
|
|
|
+ <ClCompile Include="..\src\utils\gravity_debug.c" />
|
|
|
+ <ClCompile Include="..\src\utils\gravity_json.c" />
|
|
|
+ <ClCompile Include="..\src\utils\gravity_utils.c" />
|
|
|
+ </ItemGroup>
|
|
|
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
+ <ImportGroup Label="ExtensionTargets">
|
|
|
+ </ImportGroup>
|
|
|
+</Project>
|