diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-30 12:06:50 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-30 12:06:50 +0000 |
commit | e1724ce95496f1f57ef31ca526875a963fb54919 (patch) | |
tree | f5536e939151b929e9e68b17c2c887ec8719a81b | |
parent | faf0596cdce40a26947b297b392fae6c073f83da (diff) |
Tox: fix post build event path
git-svn-id: http://svn.miranda-ng.org/main/trunk@10344 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/Tox/Tox_10.vcxproj | 4 | ||||
-rw-r--r-- | protocols/Tox/Tox_12.vcxproj | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Tox/Tox_10.vcxproj b/protocols/Tox/Tox_10.vcxproj index 6172cd3001..13bd812278 100644 --- a/protocols/Tox/Tox_10.vcxproj +++ b/protocols/Tox/Tox_10.vcxproj @@ -159,7 +159,7 @@ <AdditionalIncludeDirectories>..\..\include\msapi</AdditionalIncludeDirectories>
</ResourceCompile>
<PostBuildEvent>
- <Command>xcopy dll\x86\*.dll $(SolutionDir)$(Configuration) /Y</Command>
+ <Command>xcopy tox\dll\x86\*.dll $(SolutionDir)$(Configuration) /Y</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@@ -190,7 +190,7 @@ <AdditionalIncludeDirectories>..\..\include\msapi</AdditionalIncludeDirectories>
</ResourceCompile>
<PostBuildEvent>
- <Command>xcopy dll\x64\*.dll $(SolutionDir)$(Configuration)64 /Y</Command>
+ <Command>xcopy tox\dll\x64\*.dll $(SolutionDir)$(Configuration)64 /Y</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
diff --git a/protocols/Tox/Tox_12.vcxproj b/protocols/Tox/Tox_12.vcxproj index c83c6c9f7d..1031f8995b 100644 --- a/protocols/Tox/Tox_12.vcxproj +++ b/protocols/Tox/Tox_12.vcxproj @@ -163,7 +163,7 @@ <AdditionalIncludeDirectories>..\..\include\msapi</AdditionalIncludeDirectories>
</ResourceCompile>
<PostBuildEvent>
- <Command>xcopy dll\x86\*.dll $(SolutionDir)$(Configuration) /Y</Command>
+ <Command>xcopy tox\dll\x86\*.dll $(SolutionDir)$(Configuration) /Y</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@@ -193,7 +193,7 @@ <AdditionalIncludeDirectories>..\..\include\msapi</AdditionalIncludeDirectories>
</ResourceCompile>
<PostBuildEvent>
- <Command>xcopy dll\x64\*.dll $(SolutionDir)$(Configuration)64 /Y</Command>
+ <Command>xcopy tox\dll\x64\*.dll $(SolutionDir)$(Configuration)64 /Y</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
|