From 7f9bb9e89b2fd10c1c114f4c873b96448deabec5 Mon Sep 17 00:00:00 2001 From: Derek Bruening Date: Thu, 2 Feb 2017 19:12:54 -0500 Subject: [PATCH] Fix drcachesim installation missing drconfiglib The drcachesim installation accidentally installed drinjectlib twice rather than installing it and drconfiglib. Review-URL: https://codereview.appspot.com/319280043 --- clients/drcachesim/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/drcachesim/CMakeLists.txt b/clients/drcachesim/CMakeLists.txt index 48e212c4df1..2ad44629925 100644 --- a/clients/drcachesim/CMakeLists.txt +++ b/clients/drcachesim/CMakeLists.txt @@ -1,5 +1,5 @@ # ********************************************************** -# Copyright (c) 2015-2016 Google, Inc. All rights reserved. +# Copyright (c) 2015-2017 Google, Inc. All rights reserved. # ********************************************************** # Redistribution and use in source and binary forms, with or without @@ -221,7 +221,7 @@ if (WIN32) # drcachesim needs these dlls (i#1737 would eliminate this) get_target_property(injectlib_loc drinjectlib LOCATION${location_suffix}) DR_install(FILES "${injectlib_loc}" DESTINATION "${INSTALL_CLIENTS_BIN}") - get_target_property(configlib_loc drinjectlib LOCATION${location_suffix}) + get_target_property(configlib_loc drconfiglib LOCATION${location_suffix}) DR_install(FILES "${configlib_loc}" DESTINATION "${INSTALL_CLIENTS_BIN}") add_custom_command(TARGET drcachesim POST_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E copy ${DR_LIBRARY_BASE_DIRECTORY}/drinjectlib.dll