diff options
author | fanquake <fanquake@gmail.com> | 2019-07-05 09:22:27 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2019-07-05 10:10:16 +0800 |
commit | 4f378ac30cf66178564620b4a8ca9cad7f031cc3 (patch) | |
tree | 05a8c028151fbecb7c2b64df3afcc5e9af81f646 /build_msvc/libbitcoin_zmq/libbitcoin_zmq.vcxproj.in | |
parent | 1088b90cbae3e9e9fe686356361f1ce08ad8a478 (diff) | |
parent | 08c721dab2b6d33f11ecf5ed089841d1fc9d8d15 (diff) |
Merge #16308: [MSVC] Copy build output to src/ automatically after build
08c721dab2b6d33f11ecf5ed089841d1fc9d8d15 [MSVC] Copy build output to src/ automatically after build (nicolas.dorier)
Pull request description:
I got frustrated many time that I run functional tests on an outdated binary.
This make sure that files are properly copied (and debuggable) for functional tests after a build.
This PR add a `common.vcxproj` which can be used to extend the build steps.
I can't move it in `common.init`, because build step customization must always come at the end of a project file.
ACKs for top commit:
sipsorcery:
tACK 08c721dab2b6d33f11ecf5ed089841d1fc9d8d15.
fanquake:
ACK 08c721dab2b6d33f11ecf5ed089841d1fc9d8d15
Tree-SHA512: 7c033552a7bbbd3bb51a72d13bf4254e3b779c59ec93629c85f17745a1b17a8c1d6c87bb5e50eb5f4e5486e767929c0126e555b185608fd666aa39729b5068e1
Diffstat (limited to 'build_msvc/libbitcoin_zmq/libbitcoin_zmq.vcxproj.in')
-rw-r--r-- | build_msvc/libbitcoin_zmq/libbitcoin_zmq.vcxproj.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build_msvc/libbitcoin_zmq/libbitcoin_zmq.vcxproj.in b/build_msvc/libbitcoin_zmq/libbitcoin_zmq.vcxproj.in index 1b2c27e53f..e86eea81e6 100644 --- a/build_msvc/libbitcoin_zmq/libbitcoin_zmq.vcxproj.in +++ b/build_msvc/libbitcoin_zmq/libbitcoin_zmq.vcxproj.in @@ -12,4 +12,5 @@ </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> + <Import Project="..\common.vcxproj" /> </Project> |