From 45d6f4dc1b9372a60c17e7eacc4998a640c0c5ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Wed, 5 Jun 2013 17:57:13 +0000 Subject: [PATCH] [CMAKE] - put all debug symbols (MSVC) in the same directory. svn path=/trunk/; revision=59175 --- reactos/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/CMakeLists.txt b/reactos/CMakeLists.txt index 6ffb68e4181..7a7c2cad321 100644 --- a/reactos/CMakeLists.txt +++ b/reactos/CMakeLists.txt @@ -232,6 +232,9 @@ else() add_subdirectory(include/asm) include(cmake/baseaddress.cmake) + + # For MSVC builds, this puts all debug symbols file in the same directory. + set(CMAKE_PDB_OUTPUT_DIRECTORY "${REACTOS_BINARY_DIR}/msvc_pdb") #begin with boot so reactos_cab target is defined before all other modules add_subdirectory(boot)