diff options
author | Damjan Marion <damarion@cisco.com> | 2020-05-07 16:49:45 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-05-08 17:01:32 +0000 |
commit | 599efc67e87e89666d44efd34b5d3db7ccf1f4ca (patch) | |
tree | 5ced205cb5ff5247e8e9b596295d4ab4d60319c5 /src/cmake/exec.cmake | |
parent | 13f64ce2272539d97b8c499e8e298a053fb3c9e2 (diff) |
build: various improvements
- add option to install only host tools
- add option to specify lib and runtime dir
Type: improvement
Change-Id: I6356b52df459120fc9b0127948bae7679fb10e52
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/cmake/exec.cmake')
-rw-r--r-- | src/cmake/exec.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmake/exec.cmake b/src/cmake/exec.cmake index d5e837084e9..7bfd5751c83 100644 --- a/src/cmake/exec.cmake +++ b/src/cmake/exec.cmake @@ -30,7 +30,7 @@ macro(add_vpp_executable exec) add_dependencies(${exec} ${ARG_DEPENDS}) endif() if(NOT ARG_NO_INSTALL) - install(TARGETS ${exec} DESTINATION bin) + install(TARGETS ${exec} DESTINATION ${VPP_RUNTIME_DIR}) endif() endmacro() |