summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2016-03-15 16:18:06 +0100
committermanuel <manuel@mausz.at>2016-03-15 16:18:06 +0100
commiteb2b3e9ed902eb56262bb235960904430bd13879 (patch)
tree9417aa98d0257e0760fc48d4132cfbdcdc913f03
parent1d082f12b940e07655f966845f44fca15a505e3a (diff)
downloadkodi-pvr-build-eb2b3e9ed902eb56262bb235960904430bd13879.tar.gz
kodi-pvr-build-eb2b3e9ed902eb56262bb235960904430bd13879.tar.bz2
kodi-pvr-build-eb2b3e9ed902eb56262bb235960904430bd13879.zip
...and commit the fix
-rw-r--r--project/cmake/scripts/common/addon-helpers.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/cmake/scripts/common/addon-helpers.cmake b/project/cmake/scripts/common/addon-helpers.cmake
index bb7a1da..caef610 100644
--- a/project/cmake/scripts/common/addon-helpers.cmake
+++ b/project/cmake/scripts/common/addon-helpers.cmake
@@ -107,7 +107,7 @@ macro (build_addon target prefix libs)
107 IF(CMAKE_BUILD_TYPE MATCHES Debug) 107 IF(CMAKE_BUILD_TYPE MATCHES Debug)
108 # for debug builds also install the PDB file 108 # for debug builds also install the PDB file
109 get_filename_component(LIBRARY_DIR ${LIBRARY_LOCATION} DIRECTORY) 109 get_filename_component(LIBRARY_DIR ${LIBRARY_LOCATION} DIRECTORY)
110 INSTALL(FILES $<TARGET_PDB_FILE_NAME:${target}> DESTINATION ${target} 110 INSTALL(FILES $<TARGET_PDB_FILE:${target}> DESTINATION ${target}
111 COMPONENT ${target}-${${prefix}_VERSION}) 111 COMPONENT ${target}-${${prefix}_VERSION})
112 ENDIF() 112 ENDIF()
113 ELSE(WIN32) 113 ELSE(WIN32)