diff options
Diffstat (limited to 'vsprops')
-rw-r--r-- | vsprops/qt.props | 35 | ||||
-rw-r--r-- | vsprops/qt_libs_debug.props | 16 | ||||
-rw-r--r-- | vsprops/qt_libs_release.props | 12 |
3 files changed, 63 insertions, 0 deletions
diff --git a/vsprops/qt.props b/vsprops/qt.props new file mode 100644 index 000000000..f9cfb1e25 --- /dev/null +++ b/vsprops/qt.props @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ImportGroup Label="PropertySheets" /> + <PropertyGroup Label="UserMacros"> + <QtIncludeDir>$(QTDIR)\include\</QtIncludeDir> + <QtLibraryDir>$(QTDIR)\lib\</QtLibraryDir> + </PropertyGroup> + <PropertyGroup> + <IncludePath>$(QtIncludeDir);$(QtIncludeDir)QtGui;$(QtIncludeDir)QtCore;$(QtIncludeDir)Qt;$(QtIncludeDir)QtOpenGL;$(QtIncludeDir)QtANGLE;$(QtIncludeDir)QtWidgets;$(IncludePath)</IncludePath> + <LibraryPath>$(QtLibraryDir);$(LibraryPath)</LibraryPath> + </PropertyGroup> + <ItemDefinitionGroup> + <UIC /> + </ItemDefinitionGroup> + <ItemDefinitionGroup> + <UIC> + <QtUicPrefix>src/ui_</QtUicPrefix> + <QtUicExt>.h</QtUicExt> + </UIC> + <MOC> + <QtCommandLine>/I"$(SolutionDir)src\common\src" /I"$(SolutionDir)src\core\src" /I"$(ExternalsDir)glew-1.6.0\include" /I"$(ExternalsDir)sdl-1.2.15\include" /I"$(ExternalsDir)qhexedit"</QtCommandLine> + <QtKeywords>false</QtKeywords> + </MOC> + <Link /> + <ClCompile /> + </ItemDefinitionGroup> + <ItemGroup> + <BuildMacro Include="QtIncludeDir"> + <Value>$(QtIncludeDir)</Value> + </BuildMacro> + <BuildMacro Include="QtLibraryDir"> + <Value>$(QtLibraryDir)</Value> + </BuildMacro> + </ItemGroup> +</Project>
\ No newline at end of file diff --git a/vsprops/qt_libs_debug.props b/vsprops/qt_libs_debug.props new file mode 100644 index 000000000..dcba690f0 --- /dev/null +++ b/vsprops/qt_libs_debug.props @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ImportGroup Label="PropertySheets" /> + <PropertyGroup Label="UserMacros" /> + <PropertyGroup /> + <ItemDefinitionGroup> + <Link> + <AdditionalDependencies>QtCored4.lib;QtGuid4.lib;QtOpenGLd4.lib;%(AdditionalDependencies)</AdditionalDependencies> + </Link> + <MOC> + <QtNoDebug>false</QtNoDebug> + <QtCommandLine>/I"$(SolutionDir)src\common\src" /I"$(SolutionDir)src\core\src" /I"$(ExternalsDir)glew-1.6.0\include" /I"$(ExternalsDir)sdl-1.2.15\include" /I"$(ExternalsDir)qhexedit" /D"_DEBUG"</QtCommandLine> + </MOC> + </ItemDefinitionGroup> + <ItemGroup /> +</Project>
\ No newline at end of file diff --git a/vsprops/qt_libs_release.props b/vsprops/qt_libs_release.props new file mode 100644 index 000000000..87ccf605d --- /dev/null +++ b/vsprops/qt_libs_release.props @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ImportGroup Label="PropertySheets" /> + <PropertyGroup Label="UserMacros" /> + <PropertyGroup /> + <ItemDefinitionGroup> + <Link> + <AdditionalDependencies>QtCore4.lib;QtGui4.lib;QtOpenGL4.lib;%(AdditionalDependencies)</AdditionalDependencies> + </Link> + </ItemDefinitionGroup> + <ItemGroup /> +</Project>
\ No newline at end of file |