diff options
| author | 2014-09-01 22:29:23 -0400 | |
|---|---|---|
| committer | 2014-09-01 22:29:23 -0400 | |
| commit | c0e48432cd262baa6ed84b33cd9dd0d8f585e345 (patch) | |
| tree | 0ed8ccb8b5c42ee27c0c44969771bbd77af8ebf8 /vsprops | |
| parent | Merge pull request #84 from bunnei/fix-hw-synchronization (diff) | |
| parent | Remove hand-crafted Visual Studio solution. (diff) | |
| download | yuzu-c0e48432cd262baa6ed84b33cd9dd0d8f585e345.tar.gz yuzu-c0e48432cd262baa6ed84b33cd9dd0d8f585e345.tar.xz yuzu-c0e48432cd262baa6ed84b33cd9dd0d8f585e345.zip | |
Merge pull request #69 from yuriks/cmake-cleanup
CMake cleanup
Diffstat (limited to 'vsprops')
| -rw-r--r-- | vsprops/app.props | 27 | ||||
| -rw-r--r-- | vsprops/base.props | 25 | ||||
| -rw-r--r-- | vsprops/code_generation_debug.props | 19 | ||||
| -rw-r--r-- | vsprops/code_generation_release.props | 22 | ||||
| -rw-r--r-- | vsprops/externals.props | 30 | ||||
| -rw-r--r-- | vsprops/optimization_debug.props | 12 | ||||
| -rw-r--r-- | vsprops/optimization_release.props | 41 | ||||
| -rw-r--r-- | vsprops/qt.props | 39 | ||||
| -rw-r--r-- | vsprops/qt_libs_debug.props | 21 | ||||
| -rw-r--r-- | vsprops/qt_libs_release.props | 17 |
10 files changed, 0 insertions, 253 deletions
diff --git a/vsprops/app.props b/vsprops/app.props deleted file mode 100644 index aa86fd142..000000000 --- a/vsprops/app.props +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros"> | ||
| 5 | <EmuBinDir>$(SolutionDir)bin\$(PlatformName)\</EmuBinDir> | ||
| 6 | </PropertyGroup> | ||
| 7 | <PropertyGroup> | ||
| 8 | <OutDir>$(EmuBinDir)</OutDir> | ||
| 9 | <TargetName>$(ProjectName)$(Configuration)</TargetName> | ||
| 10 | </PropertyGroup> | ||
| 11 | <ItemDefinitionGroup> | ||
| 12 | <PostBuildEvent> | ||
| 13 | <Command>xcopy "$(SolutionDir)data" "$(EmuBinDir)" /Y /S /D | ||
| 14 | xcopy "$(ExternalsDir)glew-1.10.0\bin\Release\$(PlatformName)\glew32.dll" "$(EmuBinDir)" /Y /S /D | ||
| 15 | xcopy "$(ExternalsDir)glfw-3.0.2\lib-msvc100\glfw3.dll" "$(EmuBinDir)" /Y /S /D | ||
| 16 | %(Command)</Command> | ||
| 17 | </PostBuildEvent> | ||
| 18 | <Link> | ||
| 19 | <AdditionalDependencies>comctl32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
| 20 | </Link> | ||
| 21 | </ItemDefinitionGroup> | ||
| 22 | <ItemGroup> | ||
| 23 | <BuildMacro Include="EmuBinDir"> | ||
| 24 | <Value>$(EmuBinDir)</Value> | ||
| 25 | </BuildMacro> | ||
| 26 | </ItemGroup> | ||
| 27 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/base.props b/vsprops/base.props deleted file mode 100644 index 7eedacc74..000000000 --- a/vsprops/base.props +++ /dev/null | |||
| @@ -1,25 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros" /> | ||
| 5 | <PropertyGroup> | ||
| 6 | <IntDir>$(SolutionDir)build\$(ProjectName)\$(PlatformName)\$(Configuration)\</IntDir> | ||
| 7 | <OutDir>$(SolutionDir)build\$(ProjectName)\$(PlatformName)\$(Configuration)\</OutDir> | ||
| 8 | </PropertyGroup> | ||
| 9 | <ItemDefinitionGroup> | ||
| 10 | <ClCompile> | ||
| 11 | <WarningLevel>Level3</WarningLevel> | ||
| 12 | <StructMemberAlignment>16Bytes</StructMemberAlignment> | ||
| 13 | <FunctionLevelLinking>true</FunctionLevelLinking> | ||
| 14 | <MultiProcessorCompilation>true</MultiProcessorCompilation> | ||
| 15 | <AdditionalIncludeDirectories>$(SolutionDir)src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
| 16 | <PreprocessorDefinitions> | ||
| 17 | </PreprocessorDefinitions> | ||
| 18 | <RuntimeTypeInfo>false</RuntimeTypeInfo> | ||
| 19 | </ClCompile> | ||
| 20 | <Link> | ||
| 21 | <GenerateDebugInformation>true</GenerateDebugInformation> | ||
| 22 | </Link> | ||
| 23 | </ItemDefinitionGroup> | ||
| 24 | <ItemGroup /> | ||
| 25 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/code_generation_debug.props b/vsprops/code_generation_debug.props deleted file mode 100644 index abd617d71..000000000 --- a/vsprops/code_generation_debug.props +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros" /> | ||
| 5 | <PropertyGroup /> | ||
| 6 | <ItemDefinitionGroup> | ||
| 7 | <ClCompile> | ||
| 8 | <PreprocessorDefinitions>_DEBUG;_SECURE_SCL=1;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 9 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> | ||
| 10 | <MinimalRebuild>false</MinimalRebuild> | ||
| 11 | </ClCompile> | ||
| 12 | <MOC /> | ||
| 13 | <MOC /> | ||
| 14 | <Link> | ||
| 15 | <AdditionalOptions>/NODEFAULTLIB:LIBCMT %(AdditionalOptions)</AdditionalOptions> | ||
| 16 | </Link> | ||
| 17 | </ItemDefinitionGroup> | ||
| 18 | <ItemGroup /> | ||
| 19 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/code_generation_release.props b/vsprops/code_generation_release.props deleted file mode 100644 index 732092ad6..000000000 --- a/vsprops/code_generation_release.props +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros" /> | ||
| 5 | <PropertyGroup> | ||
| 6 | <_PropertySheetDisplayName>code_generation_release</_PropertySheetDisplayName> | ||
| 7 | </PropertyGroup> | ||
| 8 | <ItemDefinitionGroup> | ||
| 9 | <ClCompile> | ||
| 10 | <MinimalRebuild>false</MinimalRebuild> | ||
| 11 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> | ||
| 12 | <PreprocessorDefinitions>_SECURE_SCL=0;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 13 | <StringPooling>true</StringPooling> | ||
| 14 | <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet> | ||
| 15 | </ClCompile> | ||
| 16 | <Link> | ||
| 17 | <OptimizeReferences>true</OptimizeReferences> | ||
| 18 | <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
| 19 | </Link> | ||
| 20 | </ItemDefinitionGroup> | ||
| 21 | <ItemGroup /> | ||
| 22 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/externals.props b/vsprops/externals.props deleted file mode 100644 index c49a095ec..000000000 --- a/vsprops/externals.props +++ /dev/null | |||
| @@ -1,30 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros"> | ||
| 5 | <ExternalsDir>$(SolutionDir)externals\</ExternalsDir> | ||
| 6 | </PropertyGroup> | ||
| 7 | <PropertyGroup> | ||
| 8 | <_PropertySheetDisplayName>externals</_PropertySheetDisplayName> | ||
| 9 | </PropertyGroup> | ||
| 10 | <ItemDefinitionGroup> | ||
| 11 | <ClCompile> | ||
| 12 | <AdditionalIncludeDirectories>$(ExternalsDir)glew-1.10.0\include;$(ExternalsDir)glfw-3.0.2\include;$(ExternalsDir)qhexedit;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | ||
| 13 | <PreprocessorDefinitions> | ||
| 14 | </PreprocessorDefinitions> | ||
| 15 | </ClCompile> | ||
| 16 | <Lib /> | ||
| 17 | <Link> | ||
| 18 | <AdditionalLibraryDirectories>$(ExternalsDir)glew-1.10.0\lib\Release\$(PlatformName);$(ExternalsDir)glfw-3.0.2\lib-msvc100;$(ExternalsDir)libjpeg;$(ExternalsDir)sdl-2.0.0\lib\$(PlatformName);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> | ||
| 19 | <AdditionalDependencies>glfw3dll.lib;opengl32.lib;glew32.lib;glu32.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
| 20 | <IgnoreSpecificDefaultLibraries> | ||
| 21 | </IgnoreSpecificDefaultLibraries> | ||
| 22 | </Link> | ||
| 23 | <ProjectReference /> | ||
| 24 | </ItemDefinitionGroup> | ||
| 25 | <ItemGroup> | ||
| 26 | <BuildMacro Include="ExternalsDir"> | ||
| 27 | <Value>$(ExternalsDir)</Value> | ||
| 28 | </BuildMacro> | ||
| 29 | </ItemGroup> | ||
| 30 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/optimization_debug.props b/vsprops/optimization_debug.props deleted file mode 100644 index 3c7081f16..000000000 --- a/vsprops/optimization_debug.props +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros" /> | ||
| 5 | <PropertyGroup /> | ||
| 6 | <ItemDefinitionGroup> | ||
| 7 | <ClCompile> | ||
| 8 | <OmitFramePointers>false</OmitFramePointers> | ||
| 9 | </ClCompile> | ||
| 10 | </ItemDefinitionGroup> | ||
| 11 | <ItemGroup /> | ||
| 12 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/optimization_release.props b/vsprops/optimization_release.props deleted file mode 100644 index ea1573e6c..000000000 --- a/vsprops/optimization_release.props +++ /dev/null | |||
| @@ -1,41 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros" /> | ||
| 5 | <PropertyGroup /> | ||
| 6 | <ItemDefinitionGroup> | ||
| 7 | <ClCompile> | ||
| 8 | <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion> | ||
| 9 | </ClCompile> | ||
| 10 | </ItemDefinitionGroup> | ||
| 11 | <ItemDefinitionGroup> | ||
| 12 | <ClCompile> | ||
| 13 | <IntrinsicFunctions>true</IntrinsicFunctions> | ||
| 14 | </ClCompile> | ||
| 15 | </ItemDefinitionGroup> | ||
| 16 | <ItemDefinitionGroup> | ||
| 17 | <ClCompile> | ||
| 18 | <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed> | ||
| 19 | </ClCompile> | ||
| 20 | </ItemDefinitionGroup> | ||
| 21 | <ItemDefinitionGroup> | ||
| 22 | <ClCompile> | ||
| 23 | <OmitFramePointers>true</OmitFramePointers> | ||
| 24 | </ClCompile> | ||
| 25 | </ItemDefinitionGroup> | ||
| 26 | <ItemDefinitionGroup> | ||
| 27 | <ClCompile> | ||
| 28 | <EnableFiberSafeOptimizations>true</EnableFiberSafeOptimizations> | ||
| 29 | </ClCompile> | ||
| 30 | </ItemDefinitionGroup> | ||
| 31 | <ItemDefinitionGroup> | ||
| 32 | <ClCompile> | ||
| 33 | <WholeProgramOptimization>true</WholeProgramOptimization> | ||
| 34 | <Optimization>MaxSpeed</Optimization> | ||
| 35 | </ClCompile> | ||
| 36 | <Link> | ||
| 37 | <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration> | ||
| 38 | </Link> | ||
| 39 | </ItemDefinitionGroup> | ||
| 40 | <ItemGroup /> | ||
| 41 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/qt.props b/vsprops/qt.props deleted file mode 100644 index f74a7b5ea..000000000 --- a/vsprops/qt.props +++ /dev/null | |||
| @@ -1,39 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros"> | ||
| 5 | <QtIncludeDir>$(QTDIR)\include\</QtIncludeDir> | ||
| 6 | <QtLibraryDir>$(QTDIR)\lib\</QtLibraryDir> | ||
| 7 | <QtBinaryDir>$(QTDIR)\bin\</QtBinaryDir> | ||
| 8 | </PropertyGroup> | ||
| 9 | <PropertyGroup> | ||
| 10 | <IncludePath>$(QtIncludeDir);$(QtIncludeDir)QtGui;$(QtIncludeDir)QtCore;$(QtIncludeDir)Qt;$(QtIncludeDir)QtOpenGL;$(QtIncludeDir)QtANGLE;$(QtIncludeDir)QtWidgets;$(ProjectDir);$(IncludePath)</IncludePath> | ||
| 11 | <LibraryPath>$(QtLibraryDir);$(LibraryPath)</LibraryPath> | ||
| 12 | </PropertyGroup> | ||
| 13 | <ItemDefinitionGroup> | ||
| 14 | <UIC /> | ||
| 15 | </ItemDefinitionGroup> | ||
| 16 | <ItemDefinitionGroup> | ||
| 17 | <UIC> | ||
| 18 | <QtUicPrefix>ui_</QtUicPrefix> | ||
| 19 | <QtUicExt>.h</QtUicExt> | ||
| 20 | </UIC> | ||
| 21 | <MOC> | ||
| 22 | <QtCommandLine>/I"$(SolutionDir)src" /I"$(ExternalsDir)glew-1.6.0\include" /I"$(ExternalsDir)sdl-1.2.15\include" /I"$(ExternalsDir)qhexedit"</QtCommandLine> | ||
| 23 | <QtKeywords>false</QtKeywords> | ||
| 24 | </MOC> | ||
| 25 | <Link /> | ||
| 26 | <ClCompile /> | ||
| 27 | </ItemDefinitionGroup> | ||
| 28 | <ItemGroup> | ||
| 29 | <BuildMacro Include="QtIncludeDir"> | ||
| 30 | <Value>$(QtIncludeDir)</Value> | ||
| 31 | </BuildMacro> | ||
| 32 | <BuildMacro Include="QtLibraryDir"> | ||
| 33 | <Value>$(QtLibraryDir)</Value> | ||
| 34 | </BuildMacro> | ||
| 35 | <BuildMacro Include="QtBinaryDir"> | ||
| 36 | <Value>$(QtBinaryDir)</Value> | ||
| 37 | </BuildMacro> | ||
| 38 | </ItemGroup> | ||
| 39 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/qt_libs_debug.props b/vsprops/qt_libs_debug.props deleted file mode 100644 index 335d0ac47..000000000 --- a/vsprops/qt_libs_debug.props +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros" /> | ||
| 5 | <PropertyGroup /> | ||
| 6 | <ItemDefinitionGroup> | ||
| 7 | <Link> | ||
| 8 | <AdditionalDependencies>QtCored4.lib;QtGuid4.lib;QtOpenGLd4.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
| 9 | </Link> | ||
| 10 | <MOC> | ||
| 11 | <QtNoDebug>false</QtNoDebug> | ||
| 12 | <QtCommandLine>/I"$(SolutionDir)src" /I"$(ExternalsDir)glew-1.6.0\include" /I"$(ExternalsDir)sdl-1.2.15\include" /I"$(ExternalsDir)qhexedit" /D"_DEBUG"</QtCommandLine> | ||
| 13 | </MOC> | ||
| 14 | <PostBuildEvent> | ||
| 15 | <Command>xcopy "$(QtBinaryDir)QtCored4.dll" "$(EmuBinDir)" /Y /S /D | ||
| 16 | xcopy "$(QtBinaryDir)QtGuid4.dll" "$(EmuBinDir)" /Y /S /D | ||
| 17 | xcopy "$(QtBinaryDir)QtOpenGLd4.dll" "$(EmuBinDir)" /Y /S /D</Command> | ||
| 18 | </PostBuildEvent> | ||
| 19 | </ItemDefinitionGroup> | ||
| 20 | <ItemGroup /> | ||
| 21 | </Project> \ No newline at end of file | ||
diff --git a/vsprops/qt_libs_release.props b/vsprops/qt_libs_release.props deleted file mode 100644 index 0f02f30d5..000000000 --- a/vsprops/qt_libs_release.props +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| 3 | <ImportGroup Label="PropertySheets" /> | ||
| 4 | <PropertyGroup Label="UserMacros" /> | ||
| 5 | <PropertyGroup /> | ||
| 6 | <ItemDefinitionGroup> | ||
| 7 | <Link> | ||
| 8 | <AdditionalDependencies>QtCore4.lib;QtGui4.lib;QtOpenGL4.lib;%(AdditionalDependencies)</AdditionalDependencies> | ||
| 9 | </Link> | ||
| 10 | <PostBuildEvent> | ||
| 11 | <Command>xcopy "$(QtBinaryDir)QtCore4.dll" "$(EmuBinDir)" /Y /S /D | ||
| 12 | xcopy "$(QtBinaryDir)QtGui4.dll" "$(EmuBinDir)" /Y /S /D | ||
| 13 | xcopy "$(QtBinaryDir)QtOpenGL4.dll" "$(EmuBinDir)" /Y /S /D</Command> | ||
| 14 | </PostBuildEvent> | ||
| 15 | </ItemDefinitionGroup> | ||
| 16 | <ItemGroup /> | ||
| 17 | </Project> \ No newline at end of file | ||