libanim
changeset 15:9265b419f5e1
added visual studio 2012 project file for building 64bit library
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 20 Aug 2013 05:15:31 +0300 |
parents | b6352323cbd5 |
children | 0409e7e61d64 |
files | example/example-vs2012.vcxproj example/example-vs2012.vcxproj.filters libanim-vs2012.sln libanim-vs2012.vcxproj libanim-vs2012.vcxproj.filters |
diffstat | 5 files changed, 437 insertions(+), 0 deletions(-) [+] |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/example/example-vs2012.vcxproj Tue Aug 20 05:15:31 2013 +0300 1.3 @@ -0,0 +1,174 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1.6 + <ItemGroup Label="ProjectConfigurations"> 1.7 + <ProjectConfiguration Include="Debug|Win32"> 1.8 + <Configuration>Debug</Configuration> 1.9 + <Platform>Win32</Platform> 1.10 + </ProjectConfiguration> 1.11 + <ProjectConfiguration Include="Debug|x64"> 1.12 + <Configuration>Debug</Configuration> 1.13 + <Platform>x64</Platform> 1.14 + </ProjectConfiguration> 1.15 + <ProjectConfiguration Include="Release|Win32"> 1.16 + <Configuration>Release</Configuration> 1.17 + <Platform>Win32</Platform> 1.18 + </ProjectConfiguration> 1.19 + <ProjectConfiguration Include="Release|x64"> 1.20 + <Configuration>Release</Configuration> 1.21 + <Platform>x64</Platform> 1.22 + </ProjectConfiguration> 1.23 + </ItemGroup> 1.24 + <PropertyGroup Label="Globals"> 1.25 + <ProjectName>example</ProjectName> 1.26 + <ProjectGuid>{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}</ProjectGuid> 1.27 + <RootNamespace>example</RootNamespace> 1.28 + <Keyword>Win32Proj</Keyword> 1.29 + </PropertyGroup> 1.30 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 1.31 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 1.32 + <ConfigurationType>Application</ConfigurationType> 1.33 + <PlatformToolset>v110</PlatformToolset> 1.34 + <CharacterSet>Unicode</CharacterSet> 1.35 + <WholeProgramOptimization>true</WholeProgramOptimization> 1.36 + </PropertyGroup> 1.37 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 1.38 + <ConfigurationType>Application</ConfigurationType> 1.39 + <PlatformToolset>v110</PlatformToolset> 1.40 + <CharacterSet>Unicode</CharacterSet> 1.41 + <WholeProgramOptimization>true</WholeProgramOptimization> 1.42 + </PropertyGroup> 1.43 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 1.44 + <ConfigurationType>Application</ConfigurationType> 1.45 + <PlatformToolset>v110</PlatformToolset> 1.46 + <CharacterSet>Unicode</CharacterSet> 1.47 + </PropertyGroup> 1.48 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 1.49 + <ConfigurationType>Application</ConfigurationType> 1.50 + <PlatformToolset>v110</PlatformToolset> 1.51 + <CharacterSet>Unicode</CharacterSet> 1.52 + </PropertyGroup> 1.53 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 1.54 + <ImportGroup Label="ExtensionSettings"> 1.55 + </ImportGroup> 1.56 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 1.57 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.58 + </ImportGroup> 1.59 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 1.60 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.61 + </ImportGroup> 1.62 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 1.63 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.64 + </ImportGroup> 1.65 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 1.66 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 1.67 + </ImportGroup> 1.68 + <PropertyGroup Label="UserMacros" /> 1.69 + <PropertyGroup> 1.70 + <_ProjectFileVersion>11.0.60610.1</_ProjectFileVersion> 1.71 + </PropertyGroup> 1.72 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.73 + <OutDir>$(SolutionDir)$(Configuration)\</OutDir> 1.74 + <IntDir>$(Configuration)\</IntDir> 1.75 + <LinkIncremental>true</LinkIncremental> 1.76 + </PropertyGroup> 1.77 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 1.78 + <LinkIncremental>true</LinkIncremental> 1.79 + </PropertyGroup> 1.80 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.81 + <OutDir>$(SolutionDir)$(Configuration)\</OutDir> 1.82 + <IntDir>$(Configuration)\</IntDir> 1.83 + <LinkIncremental>false</LinkIncremental> 1.84 + </PropertyGroup> 1.85 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 1.86 + <LinkIncremental>false</LinkIncremental> 1.87 + </PropertyGroup> 1.88 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 1.89 + <ClCompile> 1.90 + <Optimization>Disabled</Optimization> 1.91 + <AdditionalIncludeDirectories>$(SolutionDir)\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 1.92 + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.93 + <MinimalRebuild>true</MinimalRebuild> 1.94 + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 1.95 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 1.96 + <PrecompiledHeader /> 1.97 + <WarningLevel>Level3</WarningLevel> 1.98 + <DebugInformationFormat>EditAndContinue</DebugInformationFormat> 1.99 + </ClCompile> 1.100 + <Link> 1.101 + <AdditionalDependencies>libanim.lib;%(AdditionalDependencies)</AdditionalDependencies> 1.102 + <AdditionalLibraryDirectories>$(SolutionDir)\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 1.103 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.104 + <SubSystem>Console</SubSystem> 1.105 + <TargetMachine>MachineX86</TargetMachine> 1.106 + </Link> 1.107 + </ItemDefinitionGroup> 1.108 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 1.109 + <ClCompile> 1.110 + <Optimization>Disabled</Optimization> 1.111 + <AdditionalIncludeDirectories>$(SolutionDir)\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 1.112 + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.113 + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 1.114 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 1.115 + <PrecompiledHeader> 1.116 + </PrecompiledHeader> 1.117 + <WarningLevel>Level3</WarningLevel> 1.118 + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 1.119 + </ClCompile> 1.120 + <Link> 1.121 + <AdditionalDependencies>libanim-x64.lib;%(AdditionalDependencies)</AdditionalDependencies> 1.122 + <AdditionalLibraryDirectories>$(TargetDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 1.123 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.124 + <SubSystem>Console</SubSystem> 1.125 + </Link> 1.126 + </ItemDefinitionGroup> 1.127 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 1.128 + <ClCompile> 1.129 + <Optimization>MaxSpeed</Optimization> 1.130 + <IntrinsicFunctions>true</IntrinsicFunctions> 1.131 + <AdditionalIncludeDirectories>$(SolutionDir)\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 1.132 + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.133 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 1.134 + <FunctionLevelLinking>true</FunctionLevelLinking> 1.135 + <PrecompiledHeader /> 1.136 + <WarningLevel>Level3</WarningLevel> 1.137 + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 1.138 + </ClCompile> 1.139 + <Link> 1.140 + <AdditionalDependencies>libanim.lib;%(AdditionalDependencies)</AdditionalDependencies> 1.141 + <AdditionalLibraryDirectories>$(SolutionDir)\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 1.142 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.143 + <SubSystem>Console</SubSystem> 1.144 + <OptimizeReferences>true</OptimizeReferences> 1.145 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 1.146 + <TargetMachine>MachineX86</TargetMachine> 1.147 + </Link> 1.148 + </ItemDefinitionGroup> 1.149 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 1.150 + <ClCompile> 1.151 + <Optimization>MaxSpeed</Optimization> 1.152 + <IntrinsicFunctions>true</IntrinsicFunctions> 1.153 + <AdditionalIncludeDirectories>$(SolutionDir)\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 1.154 + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 1.155 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 1.156 + <FunctionLevelLinking>true</FunctionLevelLinking> 1.157 + <PrecompiledHeader> 1.158 + </PrecompiledHeader> 1.159 + <WarningLevel>Level3</WarningLevel> 1.160 + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 1.161 + </ClCompile> 1.162 + <Link> 1.163 + <AdditionalDependencies>libanim-x64.lib;%(AdditionalDependencies)</AdditionalDependencies> 1.164 + <AdditionalLibraryDirectories>$(TargetDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> 1.165 + <GenerateDebugInformation>true</GenerateDebugInformation> 1.166 + <SubSystem>Console</SubSystem> 1.167 + <OptimizeReferences>true</OptimizeReferences> 1.168 + <EnableCOMDATFolding>true</EnableCOMDATFolding> 1.169 + </Link> 1.170 + </ItemDefinitionGroup> 1.171 + <ItemGroup> 1.172 + <ClCompile Include="test.c" /> 1.173 + </ItemGroup> 1.174 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 1.175 + <ImportGroup Label="ExtensionTargets"> 1.176 + </ImportGroup> 1.177 +</Project> 1.178 \ No newline at end of file
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/example/example-vs2012.vcxproj.filters Tue Aug 20 05:15:31 2013 +0300 2.3 @@ -0,0 +1,14 @@ 2.4 +<?xml version="1.0" encoding="utf-8"?> 2.5 +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 2.6 + <ItemGroup> 2.7 + <Filter Include="Source Files"> 2.8 + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> 2.9 + <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> 2.10 + </Filter> 2.11 + </ItemGroup> 2.12 + <ItemGroup> 2.13 + <ClCompile Include="test.c"> 2.14 + <Filter>Source Files</Filter> 2.15 + </ClCompile> 2.16 + </ItemGroup> 2.17 +</Project> 2.18 \ No newline at end of file
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libanim-vs2012.sln Tue Aug 20 05:15:31 2013 +0300 3.3 @@ -0,0 +1,37 @@ 3.4 + 3.5 +Microsoft Visual Studio Solution File, Format Version 12.00 3.6 +# Visual Studio 2012 3.7 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libanim", "libanim-vs2012.vcxproj", "{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}" 3.8 +EndProject 3.9 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example\example-vs2012.vcxproj", "{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}" 3.10 + ProjectSection(ProjectDependencies) = postProject 3.11 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B} = {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B} 3.12 + EndProjectSection 3.13 +EndProject 3.14 +Global 3.15 + GlobalSection(SolutionConfigurationPlatforms) = preSolution 3.16 + Debug|Win32 = Debug|Win32 3.17 + Debug|x64 = Debug|x64 3.18 + Release|Win32 = Release|Win32 3.19 + Release|x64 = Release|x64 3.20 + EndGlobalSection 3.21 + GlobalSection(ProjectConfigurationPlatforms) = postSolution 3.22 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|Win32.ActiveCfg = Debug|Win32 3.23 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|Win32.Build.0 = Debug|Win32 3.24 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|x64.ActiveCfg = Debug|x64 3.25 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|x64.Build.0 = Debug|x64 3.26 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|Win32.ActiveCfg = Release|Win32 3.27 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|Win32.Build.0 = Release|Win32 3.28 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|x64.ActiveCfg = Release|x64 3.29 + {D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|x64.Build.0 = Release|x64 3.30 + {0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Debug|Win32.ActiveCfg = Debug|Win32 3.31 + {0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Debug|Win32.Build.0 = Debug|Win32 3.32 + {0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Debug|x64.ActiveCfg = Debug|x64 3.33 + {0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Release|Win32.ActiveCfg = Release|Win32 3.34 + {0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Release|Win32.Build.0 = Release|Win32 3.35 + {0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Release|x64.ActiveCfg = Release|x64 3.36 + EndGlobalSection 3.37 + GlobalSection(SolutionProperties) = preSolution 3.38 + HideSolutionNode = FALSE 3.39 + EndGlobalSection 3.40 +EndGlobal
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/libanim-vs2012.vcxproj Tue Aug 20 05:15:31 2013 +0300 4.3 @@ -0,0 +1,174 @@ 4.4 +<?xml version="1.0" encoding="utf-8"?> 4.5 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 4.6 + <ItemGroup Label="ProjectConfigurations"> 4.7 + <ProjectConfiguration Include="Debug|Win32"> 4.8 + <Configuration>Debug</Configuration> 4.9 + <Platform>Win32</Platform> 4.10 + </ProjectConfiguration> 4.11 + <ProjectConfiguration Include="Debug|x64"> 4.12 + <Configuration>Debug</Configuration> 4.13 + <Platform>x64</Platform> 4.14 + </ProjectConfiguration> 4.15 + <ProjectConfiguration Include="Release|Win32"> 4.16 + <Configuration>Release</Configuration> 4.17 + <Platform>Win32</Platform> 4.18 + </ProjectConfiguration> 4.19 + <ProjectConfiguration Include="Release|x64"> 4.20 + <Configuration>Release</Configuration> 4.21 + <Platform>x64</Platform> 4.22 + </ProjectConfiguration> 4.23 + </ItemGroup> 4.24 + <PropertyGroup Label="Globals"> 4.25 + <ProjectName>libanim</ProjectName> 4.26 + <ProjectGuid>{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}</ProjectGuid> 4.27 + <RootNamespace>libanim</RootNamespace> 4.28 + <Keyword>Win32Proj</Keyword> 4.29 + </PropertyGroup> 4.30 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 4.31 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 4.32 + <ConfigurationType>StaticLibrary</ConfigurationType> 4.33 + <PlatformToolset>v110</PlatformToolset> 4.34 + <CharacterSet>Unicode</CharacterSet> 4.35 + <WholeProgramOptimization>true</WholeProgramOptimization> 4.36 + </PropertyGroup> 4.37 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 4.38 + <ConfigurationType>StaticLibrary</ConfigurationType> 4.39 + <PlatformToolset>v100</PlatformToolset> 4.40 + <CharacterSet>Unicode</CharacterSet> 4.41 + <WholeProgramOptimization>true</WholeProgramOptimization> 4.42 + </PropertyGroup> 4.43 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 4.44 + <ConfigurationType>StaticLibrary</ConfigurationType> 4.45 + <PlatformToolset>v110</PlatformToolset> 4.46 + <CharacterSet>Unicode</CharacterSet> 4.47 + </PropertyGroup> 4.48 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 4.49 + <ConfigurationType>StaticLibrary</ConfigurationType> 4.50 + <PlatformToolset>v100</PlatformToolset> 4.51 + <CharacterSet>Unicode</CharacterSet> 4.52 + </PropertyGroup> 4.53 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 4.54 + <ImportGroup Label="ExtensionSettings"> 4.55 + </ImportGroup> 4.56 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 4.57 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 4.58 + </ImportGroup> 4.59 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 4.60 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 4.61 + </ImportGroup> 4.62 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 4.63 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 4.64 + </ImportGroup> 4.65 + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 4.66 + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 4.67 + </ImportGroup> 4.68 + <PropertyGroup Label="UserMacros" /> 4.69 + <PropertyGroup> 4.70 + <_ProjectFileVersion>11.0.60610.1</_ProjectFileVersion> 4.71 + </PropertyGroup> 4.72 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 4.73 + <OutDir>$(SolutionDir)$(Configuration)\</OutDir> 4.74 + <IntDir>$(Configuration)\</IntDir> 4.75 + </PropertyGroup> 4.76 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 4.77 + <TargetName>$(ProjectName)-x64</TargetName> 4.78 + </PropertyGroup> 4.79 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 4.80 + <OutDir>$(SolutionDir)$(Configuration)\</OutDir> 4.81 + <IntDir>$(Configuration)\</IntDir> 4.82 + </PropertyGroup> 4.83 + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 4.84 + <TargetName>$(ProjectName)-x64</TargetName> 4.85 + </PropertyGroup> 4.86 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 4.87 + <ClCompile> 4.88 + <Optimization>Disabled</Optimization> 4.89 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 4.90 + <MinimalRebuild>true</MinimalRebuild> 4.91 + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 4.92 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 4.93 + <PrecompiledHeader /> 4.94 + <WarningLevel>Level3</WarningLevel> 4.95 + <DebugInformationFormat>EditAndContinue</DebugInformationFormat> 4.96 + <DisableSpecificWarnings>4996;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings> 4.97 + </ClCompile> 4.98 + <Lib> 4.99 + <AdditionalDependencies>libvmath.lib;pthreadVC2.lib;%(AdditionalDependencies)</AdditionalDependencies> 4.100 + </Lib> 4.101 + </ItemDefinitionGroup> 4.102 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 4.103 + <ClCompile> 4.104 + <Optimization>Disabled</Optimization> 4.105 + <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 4.106 + <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 4.107 + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 4.108 + <PrecompiledHeader> 4.109 + </PrecompiledHeader> 4.110 + <WarningLevel>Level3</WarningLevel> 4.111 + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 4.112 + <DisableSpecificWarnings>4996;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings> 4.113 + </ClCompile> 4.114 + <Lib> 4.115 + <AdditionalDependencies>libvmath.lib;pthreadVC2.lib;%(AdditionalDependencies)</AdditionalDependencies> 4.116 + </Lib> 4.117 + <PostBuildEvent> 4.118 + <Command> 4.119 + </Command> 4.120 + </PostBuildEvent> 4.121 + </ItemDefinitionGroup> 4.122 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 4.123 + <ClCompile> 4.124 + <Optimization>MaxSpeed</Optimization> 4.125 + <IntrinsicFunctions>true</IntrinsicFunctions> 4.126 + <WholeProgramOptimization>false</WholeProgramOptimization> 4.127 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 4.128 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 4.129 + <FunctionLevelLinking>true</FunctionLevelLinking> 4.130 + <PrecompiledHeader /> 4.131 + <WarningLevel>Level3</WarningLevel> 4.132 + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 4.133 + <DisableSpecificWarnings>4996;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings> 4.134 + </ClCompile> 4.135 + <Lib> 4.136 + <AdditionalDependencies>libvmath.lib;pthreadVC2.lib;%(AdditionalDependencies)</AdditionalDependencies> 4.137 + </Lib> 4.138 + </ItemDefinitionGroup> 4.139 + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 4.140 + <ClCompile> 4.141 + <Optimization>MaxSpeed</Optimization> 4.142 + <IntrinsicFunctions>true</IntrinsicFunctions> 4.143 + <WholeProgramOptimization>false</WholeProgramOptimization> 4.144 + <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> 4.145 + <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 4.146 + <FunctionLevelLinking>true</FunctionLevelLinking> 4.147 + <PrecompiledHeader> 4.148 + </PrecompiledHeader> 4.149 + <WarningLevel>Level3</WarningLevel> 4.150 + <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 4.151 + <DisableSpecificWarnings>4996;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings> 4.152 + </ClCompile> 4.153 + <Lib> 4.154 + <AdditionalDependencies>libvmath.lib;pthreadVC2.lib;%(AdditionalDependencies)</AdditionalDependencies> 4.155 + </Lib> 4.156 + <PostBuildEvent> 4.157 + <Command>mkdir $(SolutionDir)\usr\include\anim 4.158 +mkdir $(SolutionDir)\usr\lib 4.159 +copy /Y $(SolutionDir)\src\*.h $(SolutionDir)\usr\include\anim\ 4.160 +copy /Y $(TargetPath) $(SolutionDir)\usr\lib\</Command> 4.161 + </PostBuildEvent> 4.162 + </ItemDefinitionGroup> 4.163 + <ItemGroup> 4.164 + <ClCompile Include="src\anim.c" /> 4.165 + <ClCompile Include="src\dynarr.c" /> 4.166 + <ClCompile Include="src\track.c" /> 4.167 + </ItemGroup> 4.168 + <ItemGroup> 4.169 + <ClInclude Include="src\anim.h" /> 4.170 + <ClInclude Include="src\config.h" /> 4.171 + <ClInclude Include="src\dynarr.h" /> 4.172 + <ClInclude Include="src\track.h" /> 4.173 + </ItemGroup> 4.174 + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 4.175 + <ImportGroup Label="ExtensionTargets"> 4.176 + </ImportGroup> 4.177 +</Project> 4.178 \ No newline at end of file
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/libanim-vs2012.vcxproj.filters Tue Aug 20 05:15:31 2013 +0300 5.3 @@ -0,0 +1,38 @@ 5.4 +<?xml version="1.0" encoding="utf-8"?> 5.5 +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 5.6 + <ItemGroup> 5.7 + <Filter Include="Source Files"> 5.8 + <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> 5.9 + <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> 5.10 + </Filter> 5.11 + <Filter Include="Header Files"> 5.12 + <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> 5.13 + <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions> 5.14 + </Filter> 5.15 + </ItemGroup> 5.16 + <ItemGroup> 5.17 + <ClCompile Include="src\anim.c"> 5.18 + <Filter>Source Files</Filter> 5.19 + </ClCompile> 5.20 + <ClCompile Include="src\dynarr.c"> 5.21 + <Filter>Source Files</Filter> 5.22 + </ClCompile> 5.23 + <ClCompile Include="src\track.c"> 5.24 + <Filter>Source Files</Filter> 5.25 + </ClCompile> 5.26 + </ItemGroup> 5.27 + <ItemGroup> 5.28 + <ClInclude Include="src\anim.h"> 5.29 + <Filter>Header Files</Filter> 5.30 + </ClInclude> 5.31 + <ClInclude Include="src\config.h"> 5.32 + <Filter>Header Files</Filter> 5.33 + </ClInclude> 5.34 + <ClInclude Include="src\dynarr.h"> 5.35 + <Filter>Header Files</Filter> 5.36 + </ClInclude> 5.37 + <ClInclude Include="src\track.h"> 5.38 + <Filter>Header Files</Filter> 5.39 + </ClInclude> 5.40 + </ItemGroup> 5.41 +</Project> 5.42 \ No newline at end of file