freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype-demos][master] [builds/windows] Add ftmulti.


From: Alexei Podtelezhnikov (@apodtele)
Subject: [Git][freetype/freetype-demos][master] [builds/windows] Add ftmulti.
Date: Tue, 07 Feb 2023 05:03:41 +0000

Alexei Podtelezhnikov pushed to branch master at FreeType / FreeType Demo Programs

Commits:

  • 8b71d4ac
    by Alexei Podtelezhnikov at 2023-02-07T00:00:43-05:00
    [builds/windows] Add ftmulti.
    
    * builds/windows/msvc/ftmulti.vcxproj: New project.
    * builds/windows/msvc/ft2demos.sln: Add it to solutions.
    

2 changed files:

Changes:

  • builds/windows/msvc/ft2demos.sln
    ... ... @@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 12.00
    3 3
     # Visual Studio 15
    
    4 4
     VisualStudioVersion = 15.0.26730.16
    
    5 5
     MinimumVisualStudioVersion = 10.0.40219.1
    
    6
    +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ftmulti", "ftmulti.vcxproj", "{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}"
    
    7
    +EndProject
    
    6 8
     Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ftview", "ftview.vcxproj", "{77D631A5-B598-41A9-8C6B-38AE1BDBBA4E}"
    
    7 9
     EndProject
    
    8 10
     Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ftgrid", "ftgrid.vcxproj", "{3A8DB6B5-EF56-4E42-8918-3E54889C53AB}"
    
    ... ... @@ -27,6 +29,14 @@ Global
    27 29
     		Release|x86 = Release|x86
    
    28 30
     	EndGlobalSection
    
    29 31
     	GlobalSection(ProjectConfigurationPlatforms) = postSolution
    
    32
    +		{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}.Debug|x64.ActiveCfg = Debug|x64
    
    33
    +		{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}.Debug|x64.Build.0 = Debug|x64
    
    34
    +		{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}.Debug|x86.ActiveCfg = Debug|Win32
    
    35
    +		{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}.Debug|x86.Build.0 = Debug|Win32
    
    36
    +		{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}.Release|x64.ActiveCfg = Release|x64
    
    37
    +		{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}.Release|x64.Build.0 = Release|x64
    
    38
    +		{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}.Release|x86.ActiveCfg = Release|Win32
    
    39
    +		{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}.Release|x86.Build.0 = Release|Win32
    
    30 40
     		{77D631A5-B598-41A9-8C6B-38AE1BDBBA4E}.Debug|x64.ActiveCfg = Debug|x64
    
    31 41
     		{77D631A5-B598-41A9-8C6B-38AE1BDBBA4E}.Debug|x64.Build.0 = Debug|x64
    
    32 42
     		{77D631A5-B598-41A9-8C6B-38AE1BDBBA4E}.Debug|x86.ActiveCfg = Debug|Win32
    

  • builds/windows/msvc/ftmulti.vcxproj
    1
    +<?xml version="1.0" encoding="utf-8"?>
    
    2
    +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    
    3
    +  <ItemGroup Label="ProjectConfigurations">
    
    4
    +    <ProjectConfiguration Include="Debug|Win32">
    
    5
    +      <Configuration>Debug</Configuration>
    
    6
    +      <Platform>Win32</Platform>
    
    7
    +    </ProjectConfiguration>
    
    8
    +    <ProjectConfiguration Include="Release|Win32">
    
    9
    +      <Configuration>Release</Configuration>
    
    10
    +      <Platform>Win32</Platform>
    
    11
    +    </ProjectConfiguration>
    
    12
    +    <ProjectConfiguration Include="Debug|x64">
    
    13
    +      <Configuration>Debug</Configuration>
    
    14
    +      <Platform>x64</Platform>
    
    15
    +    </ProjectConfiguration>
    
    16
    +    <ProjectConfiguration Include="Release|x64">
    
    17
    +      <Configuration>Release</Configuration>
    
    18
    +      <Platform>x64</Platform>
    
    19
    +    </ProjectConfiguration>
    
    20
    +  </ItemGroup>
    
    21
    +  <PropertyGroup Label="Globals">
    
    22
    +    <ProjectGuid>{B50E4284-645B-446B-A3FD-0C44F1B2D8AB}</ProjectGuid>
    
    23
    +    <RootNamespace>ftmulti</RootNamespace>
    
    24
    +  </PropertyGroup>
    
    25
    +  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
    
    26
    +  <PropertyGroup Label="PlatformToolset">
    
    27
    +    <PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
    
    28
    +  </PropertyGroup>
    
    29
    +  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
    
    30
    +    <ConfigurationType>Application</ConfigurationType>
    
    31
    +    <UseDebugLibraries>true</UseDebugLibraries>
    
    32
    +    <CharacterSet>NotSet</CharacterSet>
    
    33
    +  </PropertyGroup>
    
    34
    +  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
    
    35
    +    <ConfigurationType>Application</ConfigurationType>
    
    36
    +    <UseDebugLibraries>false</UseDebugLibraries>
    
    37
    +    <WholeProgramOptimization>true</WholeProgramOptimization>
    
    38
    +    <CharacterSet>NotSet</CharacterSet>
    
    39
    +  </PropertyGroup>
    
    40
    +  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
    
    41
    +    <ConfigurationType>Application</ConfigurationType>
    
    42
    +    <UseDebugLibraries>true</UseDebugLibraries>
    
    43
    +    <CharacterSet>NotSet</CharacterSet>
    
    44
    +  </PropertyGroup>
    
    45
    +  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
    
    46
    +    <ConfigurationType>Application</ConfigurationType>
    
    47
    +    <UseDebugLibraries>false</UseDebugLibraries>
    
    48
    +    <WholeProgramOptimization>true</WholeProgramOptimization>
    
    49
    +    <CharacterSet>NotSet</CharacterSet>
    
    50
    +  </PropertyGroup>
    
    51
    +  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
    
    52
    +  <ImportGroup Label="ExtensionSettings">
    
    53
    +  </ImportGroup>
    
    54
    +  <ImportGroup Label="Shared">
    
    55
    +  </ImportGroup>
    
    56
    +  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
    
    57
    +    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    
    58
    +  </ImportGroup>
    
    59
    +  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    
    60
    +    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    
    61
    +  </ImportGroup>
    
    62
    +  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
    
    63
    +    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    
    64
    +  </ImportGroup>
    
    65
    +  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
    
    66
    +    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    
    67
    +  </ImportGroup>
    
    68
    +  <PropertyGroup Label="UserMacros" />
    
    69
    +  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
    
    70
    +    <OutDir>..\..\..\objs\$(Platform)\$(Configuration)\</OutDir>
    
    71
    +    <IntDir>..\..\..\objs\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
    
    72
    +  </PropertyGroup>
    
    73
    +  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
    
    74
    +    <OutDir>..\..\..\objs\$(Platform)\$(Configuration)\</OutDir>
    
    75
    +    <IntDir>..\..\..\objs\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
    
    76
    +  </PropertyGroup>
    
    77
    +  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    
    78
    +    <IntDir>..\..\..\objs\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
    
    79
    +    <OutDir>..\..\..\objs\$(Platform)\$(Configuration)\</OutDir>
    
    80
    +  </PropertyGroup>
    
    81
    +  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
    
    82
    +    <IntDir>..\..\..\objs\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
    
    83
    +    <OutDir>..\..\..\objs\$(Platform)\$(Configuration)\</OutDir>
    
    84
    +  </PropertyGroup>
    
    85
    +  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
    
    86
    +    <ClCompile>
    
    87
    +      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    
    88
    +      <WarningLevel>Level3</WarningLevel>
    
    89
    +      <Optimization>Disabled</Optimization>
    
    90
    +      <SDLCheck>true</SDLCheck>
    
    91
    +      <AdditionalIncludeDirectories>..\..\..\graph</AdditionalIncludeDirectories>
    
    92
    +    </ClCompile>
    
    93
    +    <PostBuildEvent>
    
    94
    +      <Command>copy /b ..\..\..\objs\$(Platform)\$(Configuration)\$(TargetFileName) ..\..\..\bin\</Command>
    
    95
    +    </PostBuildEvent>
    
    96
    +  </ItemDefinitionGroup>
    
    97
    +  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
    
    98
    +    <ClCompile>
    
    99
    +      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    
    100
    +      <WarningLevel>Level3</WarningLevel>
    
    101
    +      <Optimization>Disabled</Optimization>
    
    102
    +      <SDLCheck>true</SDLCheck>
    
    103
    +      <AdditionalIncludeDirectories>..\..\..\graph</AdditionalIncludeDirectories>
    
    104
    +    </ClCompile>
    
    105
    +    <PostBuildEvent>
    
    106
    +      <Command>copy /b ..\..\..\objs\$(Platform)\$(Configuration)\$(TargetFileName) ..\..\..\bin\</Command>
    
    107
    +    </PostBuildEvent>
    
    108
    +  </ItemDefinitionGroup>
    
    109
    +  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    
    110
    +    <ClCompile>
    
    111
    +      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    
    112
    +      <WarningLevel>Level3</WarningLevel>
    
    113
    +      <Optimization>MaxSpeed</Optimization>
    
    114
    +      <FunctionLevelLinking>true</FunctionLevelLinking>
    
    115
    +      <IntrinsicFunctions>true</IntrinsicFunctions>
    
    116
    +      <SDLCheck>true</SDLCheck>
    
    117
    +      <AdditionalIncludeDirectories>..\..\..\graph</AdditionalIncludeDirectories>
    
    118
    +    </ClCompile>
    
    119
    +    <Link>
    
    120
    +      <EnableCOMDATFolding>true</EnableCOMDATFolding>
    
    121
    +      <OptimizeReferences>true</OptimizeReferences>
    
    122
    +    </Link>
    
    123
    +    <PostBuildEvent>
    
    124
    +      <Command>copy /b ..\..\..\objs\$(Platform)\$(Configuration)\$(TargetFileName) ..\..\..\bin\</Command>
    
    125
    +    </PostBuildEvent>
    
    126
    +  </ItemDefinitionGroup>
    
    127
    +  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
    
    128
    +    <ClCompile>
    
    129
    +      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    
    130
    +      <WarningLevel>Level3</WarningLevel>
    
    131
    +      <Optimization>MaxSpeed</Optimization>
    
    132
    +      <FunctionLevelLinking>true</FunctionLevelLinking>
    
    133
    +      <IntrinsicFunctions>true</IntrinsicFunctions>
    
    134
    +      <SDLCheck>true</SDLCheck>
    
    135
    +      <AdditionalIncludeDirectories>..\..\..\graph</AdditionalIncludeDirectories>
    
    136
    +    </ClCompile>
    
    137
    +    <Link>
    
    138
    +      <EnableCOMDATFolding>true</EnableCOMDATFolding>
    
    139
    +      <OptimizeReferences>true</OptimizeReferences>
    
    140
    +    </Link>
    
    141
    +    <PostBuildEvent>
    
    142
    +      <Command>copy /b ..\..\..\objs\$(Platform)\$(Configuration)\$(TargetFileName) ..\..\..\bin\</Command>
    
    143
    +    </PostBuildEvent>
    
    144
    +  </ItemDefinitionGroup>
    
    145
    +  <ItemGroup>
    
    146
    +    <ClCompile Include="..\..\..\src\common.c" />
    
    147
    +    <ClCompile Include="..\..\..\src\mlgetopt.c" />
    
    148
    +    <ClCompile Include="..\..\..\src\strbuf.c" />
    
    149
    +    <ClCompile Include="..\..\..\src\rsvg-port.c" />
    
    150
    +    <ClCompile Include="..\..\..\src\ftcommon.c" />
    
    151
    +    <ClCompile Include="..\..\..\src\ftmulti.c" />
    
    152
    +  </ItemGroup>
    
    153
    +  <ItemGroup>
    
    154
    +    <ClInclude Include="..\..\..\src\common.h" />
    
    155
    +    <ClInclude Include="..\..\..\src\mlgetopt.h" />
    
    156
    +    <ClInclude Include="..\..\..\src\strbuf.h" />
    
    157
    +    <ClInclude Include="..\..\..\src\rsvg-port.h" />
    
    158
    +    <ClInclude Include="..\..\..\src\ftcommon.h" />
    
    159
    +  </ItemGroup>
    
    160
    +  <ItemGroup>
    
    161
    +    <ProjectReference Include="migs.vcxproj">
    
    162
    +      <Project>{5f517bbd-326a-4dc6-a42f-872d58501383}</Project>
    
    163
    +    </ProjectReference>
    
    164
    +  </ItemGroup>
    
    165
    +  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
    
    166
    +  <ImportGroup Label="ExtensionTargets">
    
    167
    +  </ImportGroup>
    
    168
    +  <ImportGroup Label="Dependencies">
    
    169
    +    <Import Project="ft2demos.props" />
    
    170
    +  </ImportGroup>
    
    171
    +</Project>


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]