Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Dobarro <pablodp606@gmail.com>2019-06-28 02:31:04 +0300
committerPablo Dobarro <pablodp606@gmail.com>2019-06-28 02:31:04 +0300
commitfa916b74706dd6c09b90848f7930567c3e1c8216 (patch)
treef7e868090e2d1148f68791d8142c4cb814eb0401 /build_files/cmake
parent8d17efaf7b71afa6cee252fa81b9e49016dbc118 (diff)
parent5dd8c3f0cb83db22e9570119ba35715a4d222a9f (diff)
Merge branch 'master' into sculpt-mode-features
Diffstat (limited to 'build_files/cmake')
-rw-r--r--build_files/cmake/macros.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 298703f69c8..6124a9faf14 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -1520,7 +1520,7 @@ macro(blender_precompile_headers target cpp header)
if(MSVC)
# get the name for the pch output file
get_filename_component( pchbase ${cpp} NAME_WE )
- set( pchfinal "${CMAKE_CURRENT_BINARY_DIR}/${pchbase}.pch" )
+ set( pchfinal "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${pchbase}.pch" )
# mark the cpp as the one outputting the pch
set_property(SOURCE ${cpp} APPEND PROPERTY OBJECT_OUTPUTS "${pchfinal}")