diff options
author | drenfong.wang <drenfong.wang@intel.com> | 2019-01-23 02:36:22 +0000 |
---|---|---|
committer | drenfong.wang <drenfong.wang@intel.com> | 2019-01-23 02:36:22 +0000 |
commit | cfb4b66c196c141f1fca84f39c18ea2c850daa4f (patch) | |
tree | d0d038a233b998fc06c436cc93eb6b01e1573270 /src/plugins | |
parent | 686b8b783cf546707a3ffa94c1a4c8d16a90945b (diff) |
add share lib install path
Change-Id: I29f5a4e67afa218a55fabda4781ac6dbe5912a85
Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt index c1546cc..dbff110 100644 --- a/src/plugins/CMakeLists.txt +++ b/src/plugins/CMakeLists.txt @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - +set (CMAKE_INSTALL_LIBDIR "/usr/lib") cmake_minimum_required(VERSION 2.8) project(sysrepo-vpp-plugins) @@ -61,4 +61,4 @@ target_link_libraries(vpp-plugins ${SYSREPO_LIBRARIES} ${SCVPP_LIBRARIES} bapi) # install the plugin into plugins dir install(TARGETS vpp-plugins DESTINATION ${SR_PLUGINS_DIR}) -install(TARGETS bapi ${CMAKE_INSTALL_LIBDIR}) +install(TARGETS bapi DESTINATION ${CMAKE_INSTALL_LIBDIR}) |