Author: dquintana Date: Sun Feb 23 18:15:20 2014 New Revision: 62309
URL: http://svn.reactos.org/svn/reactos?rev=62309&view=rev Log: [CMAKE] * Actually do what I said.
Modified: branches/shell-experiments/cmake/msvc.cmake
Modified: branches/shell-experiments/cmake/msvc.cmake URL: http://svn.reactos.org/svn/reactos/branches/shell-experiments/cmake/msvc.cma... ============================================================================== --- branches/shell-experiments/cmake/msvc.cmake [iso-8859-1] (original) +++ branches/shell-experiments/cmake/msvc.cmake [iso-8859-1] Sun Feb 23 18:15:20 2014 @@ -121,14 +121,7 @@
if(PCH) macro(add_pch _target _pch _sources) - - # Workaround for the MSVC toolchain (MSBUILD) /MP bug - set(_temp_gch ${CMAKE_CURRENT_BINARY_DIR}/${_target}.pch) - if(MSVC_IDE) - file(TO_NATIVE_PATH ${_temp_gch} _gch) - else() - set(_gch ${_temp_gch}) - endif() + set(_gch ${CMAKE_CURRENT_BINARY_DIR}/${_target}.pch)
if(IS_CPP) set(_pch_language CXX)