https://bugs.webkit.org/show_bug.cgi?id=155986
broke windows clean build (Requested by alexchristensen on
#webkit).
Reverted changeset:
"[Win] CMake seems to build all generated files every time"
https://bugs.webkit.org/show_bug.cgi?id=155872
http://trac.webkit.org/changeset/198781
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@198795
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2016-03-29 Commit Queue <commit-queue@webkit.org>
+
+ Unreviewed, rolling out r198781.
+ https://bugs.webkit.org/show_bug.cgi?id=155986
+
+ broke windows clean build (Requested by alexchristensen on
+ #webkit).
+
+ Reverted changeset:
+
+ "[Win] CMake seems to build all generated files every time"
+ https://bugs.webkit.org/show_bug.cgi?id=155872
+ http://trac.webkit.org/changeset/198781
+
2016-03-29 Brent Fulgham <bfulgham@apple.com>
[Win] CMake seems to build all generated files every time
set(_no_mm 0)
endif ()
- if (MSVC)
- set(_custom_outputs "${_destination}/${_prefix}${_name}.h")
- else ()
- set(_custom_outputs "${_destination}/${_prefix}${_name}.${_extension}" "${_destination}/${_prefix}${_name}.h")
- endif ()
-
if (${_no_mm})
add_custom_command(
OUTPUT ${_destination}/${_prefix}${_name}.h
list(APPEND ${_output_source} ${_destination}/${_prefix}${_name}.h)
else ()
add_custom_command(
- OUTPUT ${_custom_outputs}
+ OUTPUT ${_destination}/${_prefix}${_name}.${_extension} ${_destination}/${_prefix}${_name}.h
MAIN_DEPENDENCY ${_file}
DEPENDS ${COMMON_GENERATOR_DEPENDENCIES}
COMMAND ${PERL_EXECUTABLE} -I${WEBCORE_DIR}/bindings/scripts ${BINDING_GENERATOR} --defines "${_features}" --generator ${_generator} ${_idl_includes} --outputDir "${_destination}" --preprocessor "${CODE_GENERATOR_PREPROCESSOR}" --idlAttributesFile ${_idl_attributes_file} ${_supplemental_dependency} ${_file}