libanim

changeset 77:b1c6448d56bc

visual studio 2015 fix
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 05 Aug 2015 07:17:54 +0300
parents a0c41c08f6e9
children 769ae86eee31
files example/example.vcxproj libanim.sln src/anim.h
diffstat 3 files changed, 15 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/example/example.vcxproj	Sun Aug 02 08:16:23 2015 +0300
     1.2 +++ b/example/example.vcxproj	Wed Aug 05 07:17:54 2015 +0300
     1.3 @@ -95,7 +95,7 @@
     1.4        <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
     1.5      </ClCompile>
     1.6      <Link>
     1.7 -      <AdditionalDependencies>libanim.lib;%(AdditionalDependencies)</AdditionalDependencies>
     1.8 +      <AdditionalDependencies>libanim-dbg.lib;%(AdditionalDependencies)</AdditionalDependencies>
     1.9        <AdditionalLibraryDirectories>$(SolutionDir)\$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
    1.10        <GenerateDebugInformation>true</GenerateDebugInformation>
    1.11        <SubSystem>Console</SubSystem>
     2.1 --- a/libanim.sln	Sun Aug 02 08:16:23 2015 +0300
     2.2 +++ b/libanim.sln	Wed Aug 05 07:17:54 2015 +0300
     2.3 @@ -1,6 +1,8 @@
     2.4  
     2.5  Microsoft Visual Studio Solution File, Format Version 12.00
     2.6 -# Visual Studio 2013
     2.7 +# Visual Studio 14
     2.8 +VisualStudioVersion = 14.0.23107.0
     2.9 +MinimumVisualStudioVersion = 10.0.40219.1
    2.10  Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libanim", "libanim.vcxproj", "{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}"
    2.11  EndProject
    2.12  Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example\example.vcxproj", "{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}"
    2.13 @@ -12,24 +14,32 @@
    2.14  	GlobalSection(SolutionConfigurationPlatforms) = preSolution
    2.15  		Debug|Win32 = Debug|Win32
    2.16  		Debug|x64 = Debug|x64
    2.17 +		Debug|x86 = Debug|x86
    2.18  		Release|Win32 = Release|Win32
    2.19  		Release|x64 = Release|x64
    2.20 +		Release|x86 = Release|x86
    2.21  	EndGlobalSection
    2.22  	GlobalSection(ProjectConfigurationPlatforms) = postSolution
    2.23  		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|Win32.ActiveCfg = Debug|Win32
    2.24  		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|Win32.Build.0 = Debug|Win32
    2.25  		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|x64.ActiveCfg = Debug|x64
    2.26  		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|x64.Build.0 = Debug|x64
    2.27 +		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|x86.ActiveCfg = Debug|Win32
    2.28 +		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Debug|x86.Build.0 = Debug|Win32
    2.29  		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|Win32.ActiveCfg = Release|Win32
    2.30  		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|Win32.Build.0 = Release|Win32
    2.31  		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|x64.ActiveCfg = Release|x64
    2.32  		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|x64.Build.0 = Release|x64
    2.33 +		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|x86.ActiveCfg = Release|Win32
    2.34 +		{D8F5A227-C3D7-45EC-9F2F-720B97D21C4B}.Release|x86.Build.0 = Release|Win32
    2.35  		{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Debug|Win32.ActiveCfg = Debug|Win32
    2.36  		{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Debug|Win32.Build.0 = Debug|Win32
    2.37  		{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Debug|x64.ActiveCfg = Debug|x64
    2.38 +		{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Debug|x86.ActiveCfg = Debug|Win32
    2.39  		{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Release|Win32.ActiveCfg = Release|Win32
    2.40  		{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Release|Win32.Build.0 = Release|Win32
    2.41  		{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Release|x64.ActiveCfg = Release|x64
    2.42 +		{0121AD8F-6279-4AC6-9CD4-EDBC798BC498}.Release|x86.ActiveCfg = Release|Win32
    2.43  	EndGlobalSection
    2.44  	GlobalSection(SolutionProperties) = preSolution
    2.45  		HideSolutionNode = FALSE
     3.1 --- a/src/anim.h	Sun Aug 02 08:16:23 2015 +0300
     3.2 +++ b/src/anim.h	Wed Aug 05 07:17:54 2015 +0300
     3.3 @@ -20,6 +20,9 @@
     3.4  
     3.5  #include "config.h"
     3.6  
     3.7 +#if _MSC_VER >= 1900
     3.8 +#define _TIMESPEC_DEFINED
     3.9 +#endif
    3.10  #include <pthread.h>
    3.11  
    3.12  #include <vmath/vector.h>