aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/InstallMsgpack.cmake
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2014-11-17 06:53:07 -0500
committerJohn Szakmeister <john@szakmeister.net>2014-11-17 06:53:07 -0500
commit3b8661745b2c5ed8b4b9a7bfe4fa75935eb1afeb (patch)
tree23a59f73d997f0a227e8eb3b0d7c66b8e7bed293 /third-party/cmake/InstallMsgpack.cmake
parentcdf85dcc12bf227b5f4831b2b58c0b11f743aedf (diff)
parent2b887ec66ba28f6d6fcbfdd121522fd7093bcc65 (diff)
downloadrneovim-3b8661745b2c5ed8b4b9a7bfe4fa75935eb1afeb.tar.gz
rneovim-3b8661745b2c5ed8b4b9a7bfe4fa75935eb1afeb.tar.bz2
rneovim-3b8661745b2c5ed8b4b9a7bfe4fa75935eb1afeb.zip
Merge pull request #1485 from equalsraf/tb-no-make-prg
Use cmake --build inside CMake scripts instead of calling Make directly
Diffstat (limited to 'third-party/cmake/InstallMsgpack.cmake')
-rw-r--r--third-party/cmake/InstallMsgpack.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/third-party/cmake/InstallMsgpack.cmake b/third-party/cmake/InstallMsgpack.cmake
index d5e5d7e816..eda77f3b84 100644
--- a/third-party/cmake/InstallMsgpack.cmake
+++ b/third-party/cmake/InstallMsgpack.cmake
@@ -1,5 +1,5 @@
execute_process(
- COMMAND ${MAKE_PRG} install
+ COMMAND ${CMAKE_COMMAND} --build . --target install
RESULT_VARIABLE res)
if(NOT res EQUAL 0)