[Orxonox-commit 696] r3228 - branches/core4/cmake
rgrieder at orxonox.net
rgrieder at orxonox.net
Tue Jun 23 21:36:10 CEST 2009
Author: rgrieder
Date: 2009-06-23 21:36:10 +0200 (Tue, 23 Jun 2009)
New Revision: 3228
Modified:
branches/core4/cmake/PrecompiledHeaderFiles.cmake
Log:
Found a tedious bug resulting in the wrong behavior regarding PCH dependencies (thanks Oli).
Modified: branches/core4/cmake/PrecompiledHeaderFiles.cmake
===================================================================
--- branches/core4/cmake/PrecompiledHeaderFiles.cmake 2009-06-23 18:53:51 UTC (rev 3227)
+++ branches/core4/cmake/PrecompiledHeaderFiles.cmake 2009-06-23 19:36:10 UTC (rev 3228)
@@ -152,8 +152,8 @@
COMMAND ${CMAKE_CXX_COMPILER}
ARGS ${pchsupport_compiler_cxx_arg1} ${_pch_gcc_flags} -c -x c++-header -o ${_pch_file} ${_pch_header_file}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
- DEPENDS ${_pch_header_file} ${_pch_dep_helper_file}
- IMPLICIT_DEPENDS ${_pch_header_file}
+ DEPENDS ${_pch_dep_helper_file}
+ IMPLICIT_DEPENDS CXX ${_pch_header_file}
VERBATIM
)
More information about the Orxonox-commit
mailing list