From bbc0c95a2a516091e1f56417da59d1fe0533c14a Mon Sep 17 00:00:00 2001 From: Wander Lairson Costa Date: Mon, 13 Jul 2020 16:12:25 -0300 Subject: [PATCH] windows: Fix .pdb debug symbol file installation On Windows, the pdb symbol file is located inside the `Debug` subdirectory. Change-Id: I73656a3e0740e68d4ffbecf4820de634ab398b24 --- build/tizen/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tizen/CMakeLists.txt b/build/tizen/CMakeLists.txt index 22b28c3..e465353 100644 --- a/build/tizen/CMakeLists.txt +++ b/build/tizen/CMakeLists.txt @@ -344,7 +344,7 @@ IF( INSTALL_CMAKE_MODULES ) # Install the pdb file. IF( ENABLE_DEBUG ) - install( FILES ${CMAKE_CURRENT_BINARY_DIR}/${name}.pdb DESTINATION ${BIN_DIR} ) + install( FILES ${CMAKE_CURRENT_BINARY_DIR}/Debug/${name}.pdb DESTINATION ${BIN_DIR} ) ENDIF() ELSE() # Install the library so file and symlinks -- 2.7.4