diff options
| author | 2014-03-31 22:26:50 -0400 | |
|---|---|---|
| committer | 2014-03-31 22:32:03 -0400 | |
| commit | 05be8d2f0c58f5de56bbf920743f91bd8584b4f2 (patch) | |
| tree | c82d5c690c7fa9e252adf0c24616aa042535d517 /vsprops/qt.props | |
| parent | added very hackish ARMulator core initialization and CPU stepping (diff) | |
| download | yuzu-05be8d2f0c58f5de56bbf920743f91bd8584b4f2.tar.gz yuzu-05be8d2f0c58f5de56bbf920743f91bd8584b4f2.tar.xz yuzu-05be8d2f0c58f5de56bbf920743f91bd8584b4f2.zip | |
Basic QT window
Diffstat (limited to 'vsprops/qt.props')
| -rw-r--r-- | vsprops/qt.props | 35 |
1 files changed, 35 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 @@ | |||
| 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 | </PropertyGroup> | ||
| 8 | <PropertyGroup> | ||
| 9 | <IncludePath>$(QtIncludeDir);$(QtIncludeDir)QtGui;$(QtIncludeDir)QtCore;$(QtIncludeDir)Qt;$(QtIncludeDir)QtOpenGL;$(QtIncludeDir)QtANGLE;$(QtIncludeDir)QtWidgets;$(IncludePath)</IncludePath> | ||
| 10 | <LibraryPath>$(QtLibraryDir);$(LibraryPath)</LibraryPath> | ||
| 11 | </PropertyGroup> | ||
| 12 | <ItemDefinitionGroup> | ||
| 13 | <UIC /> | ||
| 14 | </ItemDefinitionGroup> | ||
| 15 | <ItemDefinitionGroup> | ||
| 16 | <UIC> | ||
| 17 | <QtUicPrefix>src/ui_</QtUicPrefix> | ||
| 18 | <QtUicExt>.h</QtUicExt> | ||
| 19 | </UIC> | ||
| 20 | <MOC> | ||
| 21 | <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> | ||
| 22 | <QtKeywords>false</QtKeywords> | ||
| 23 | </MOC> | ||
| 24 | <Link /> | ||
| 25 | <ClCompile /> | ||
| 26 | </ItemDefinitionGroup> | ||
| 27 | <ItemGroup> | ||
| 28 | <BuildMacro Include="QtIncludeDir"> | ||
| 29 | <Value>$(QtIncludeDir)</Value> | ||
| 30 | </BuildMacro> | ||
| 31 | <BuildMacro Include="QtLibraryDir"> | ||
| 32 | <Value>$(QtLibraryDir)</Value> | ||
| 33 | </BuildMacro> | ||
| 34 | </ItemGroup> | ||
| 35 | </Project> \ No newline at end of file | ||