diff options
| author | 2014-04-19 14:26:14 -0400 | |
|---|---|---|
| committer | 2014-04-19 14:26:14 -0400 | |
| commit | 1780f9b76a0419f5ad880ca5e58ab47279720ebf (patch) | |
| tree | 02c2cd977242bdf4bff73da6225f07551445a731 | |
| parent | Remove unused QTableView (diff) | |
| download | yuzu-1780f9b76a0419f5ad880ca5e58ab47279720ebf.tar.gz yuzu-1780f9b76a0419f5ad880ca5e58ab47279720ebf.tar.xz yuzu-1780f9b76a0419f5ad880ca5e58ab47279720ebf.zip | |
Ignore scm_rev.h and auto copy Qt dlls to bin folder on build.
Diffstat (limited to '')
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | vsprops/app.props | 3 | ||||
| -rw-r--r-- | vsprops/qt_libs_debug.props | 5 | ||||
| -rw-r--r-- | vsprops/qt_libs_release.props | 5 |
4 files changed, 15 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index f88dad0a2..8a794aa0a 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -22,3 +22,6 @@ ipch/ | |||
| 22 | # Build generated files | 22 | # Build generated files |
| 23 | build/ | 23 | build/ |
| 24 | bin/ | 24 | bin/ |
| 25 | |||
| 26 | # GIT revision number | ||
| 27 | src/common/scm_rev.h | ||
diff --git a/vsprops/app.props b/vsprops/app.props index 532fee05e..aa86fd142 100644 --- a/vsprops/app.props +++ b/vsprops/app.props | |||
| @@ -12,7 +12,8 @@ | |||
| 12 | <PostBuildEvent> | 12 | <PostBuildEvent> |
| 13 | <Command>xcopy "$(SolutionDir)data" "$(EmuBinDir)" /Y /S /D | 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 | 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</Command> | 15 | xcopy "$(ExternalsDir)glfw-3.0.2\lib-msvc100\glfw3.dll" "$(EmuBinDir)" /Y /S /D |
| 16 | %(Command)</Command> | ||
| 16 | </PostBuildEvent> | 17 | </PostBuildEvent> |
| 17 | <Link> | 18 | <Link> |
| 18 | <AdditionalDependencies>comctl32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> | 19 | <AdditionalDependencies>comctl32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> |
diff --git a/vsprops/qt_libs_debug.props b/vsprops/qt_libs_debug.props index 2b2ced9bc..7b8660050 100644 --- a/vsprops/qt_libs_debug.props +++ b/vsprops/qt_libs_debug.props | |||
| @@ -11,6 +11,11 @@ | |||
| 11 | <QtNoDebug>false</QtNoDebug> | 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> | 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> | 13 | </MOC> |
| 14 | <PostBuildEvent> | ||
| 15 | <Command>xcopy "$(QtLibraryDir)QtCored4.dll" "$(EmuBinDir)" /Y /S /D | ||
| 16 | xcopy "$(QtLibraryDir)QtGuid4.dll" "$(EmuBinDir)" /Y /S /D | ||
| 17 | xcopy "$(QtLibraryDir)QtOpenGLd4.dll" "$(EmuBinDir)" /Y /S /D</Command> | ||
| 18 | </PostBuildEvent> | ||
| 14 | </ItemDefinitionGroup> | 19 | </ItemDefinitionGroup> |
| 15 | <ItemGroup /> | 20 | <ItemGroup /> |
| 16 | </Project> \ No newline at end of file | 21 | </Project> \ No newline at end of file |
diff --git a/vsprops/qt_libs_release.props b/vsprops/qt_libs_release.props index 87ccf605d..76b71df07 100644 --- a/vsprops/qt_libs_release.props +++ b/vsprops/qt_libs_release.props | |||
| @@ -7,6 +7,11 @@ | |||
| 7 | <Link> | 7 | <Link> |
| 8 | <AdditionalDependencies>QtCore4.lib;QtGui4.lib;QtOpenGL4.lib;%(AdditionalDependencies)</AdditionalDependencies> | 8 | <AdditionalDependencies>QtCore4.lib;QtGui4.lib;QtOpenGL4.lib;%(AdditionalDependencies)</AdditionalDependencies> |
| 9 | </Link> | 9 | </Link> |
| 10 | <PostBuildEvent> | ||
| 11 | <Command>xcopy "$(QtLibraryDir)QtCore4.dll" "$(EmuBinDir)" /Y /S /D | ||
| 12 | xcopy "$(QtLibraryDir)QtGui4.dll" "$(EmuBinDir)" /Y /S /D | ||
| 13 | xcopy "$(QtLibraryDir)QtOpenGL4.dll" "$(EmuBinDir)" /Y /S /D</Command> | ||
| 14 | </PostBuildEvent> | ||
| 10 | </ItemDefinitionGroup> | 15 | </ItemDefinitionGroup> |
| 11 | <ItemGroup /> | 16 | <ItemGroup /> |
| 12 | </Project> \ No newline at end of file | 17 | </Project> \ No newline at end of file |