From 16eeaed2f150a758e1e8c6c0e76119393fd88bdd Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 29 Oct 2018 16:43:37 +0100 Subject: [PATCH] Fixed target path of precompiled headers binary. --- cmake/modules/PrecompiledHeader.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/PrecompiledHeader.cmake b/cmake/modules/PrecompiledHeader.cmake index 1e578d261..2880da9f2 100644 --- a/cmake/modules/PrecompiledHeader.cmake +++ b/cmake/modules/PrecompiledHeader.cmake @@ -87,8 +87,8 @@ function(add_precompiled_header _target _input) endif() if(MSVC) - set(_pch_cxx_pch "${CMAKE_CFG_INTDIR}/cxx_${_input_we}.pch") - set(_pch_c_pch "${CMAKE_CFG_INTDIR}/c_${_input_we}.pch") + set(_pch_cxx_pch "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/cxx_${_input_we}.pch") + set(_pch_c_pch "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/c_${_input_we}.pch") get_target_property(sources ${_target} SOURCES) foreach(_source ${sources})