https://bugs.webkit.org/show_bug.cgi?id=135807
Reviewed by Brent Fulgham.
Source/JavaScriptCore:
* CMakeLists.txt:
Include the derived sources directory to find WTF/WTFHeaderDetection.h.
Source/WebCore:
* CMakeLists.txt:
* PlatformWin.cmake:
Generate and include a stub WebCoreHeaderDetection.h.
Source/WTF:
* wtf/CMakeLists.txt:
* wtf/PlatformWin.cmake:
Generate and include a stub WTFHeaderDetection.h.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@172499
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
"${JAVASCRIPTCORE_DIR}/tools"
"${JAVASCRIPTCORE_DIR}/yarr"
"${WTF_DIR}"
+ "${DERIVED_SOURCES_DIR}"
"${DERIVED_SOURCES_DIR}/ForwardingHeaders"
"${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}"
"${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/inspector"
+2014-08-12 Alex Christensen <achristensen@webkit.org>
+
+ Generate header detection headers for CMake on Windows.
+ https://bugs.webkit.org/show_bug.cgi?id=135807
+
+ Reviewed by Brent Fulgham.
+
+ * CMakeLists.txt:
+ Include the derived sources directory to find WTF/WTFHeaderDetection.h.
+
2014-08-11 Andy Estes <aestes@apple.com>
[iOS] Get rid of iOS.xcconfig
+2014-08-12 Alex Christensen <achristensen@webkit.org>
+
+ Generate header detection headers for CMake on Windows.
+ https://bugs.webkit.org/show_bug.cgi?id=135807
+
+ Reviewed by Brent Fulgham.
+
+ * wtf/CMakeLists.txt:
+ * wtf/PlatformWin.cmake:
+ Generate and include a stub WTFHeaderDetection.h.
+
2014-08-11 Andy Estes <aestes@apple.com>
[iOS] Get rid of iOS.xcconfig
"${WTF_DIR}/wtf/unicode"
"${THIRDPARTY_DIR}"
"${CMAKE_BINARY_DIR}"
+ "${DERIVED_SOURCES_DIR}"
)
set(WTF_LIBRARIES
winmm
)
endif ()
+
+list(APPEND WTF_HEADERS
+ "${DERIVED_SOURCES_WTF_DIR}/WTFHeaderDetection.h"
+)
+
+# FIXME: This should run testOSXLevel.cmd if it is available.
+# https://bugs.webkit.org/show_bug.cgi?id=135861
+add_custom_command(
+ OUTPUT "${DERIVED_SOURCES_WTF_DIR}/WTFHeaderDetection.h"
+ WORKING_DIRECTORY "${DERIVED_SOURCES_WTF_DIR}"
+ COMMAND echo /* No Legible Output Support Found */ > WTFHeaderDetection.h
+ VERBATIM)
"${JAVASCRIPTCORE_DIR}/runtime"
"${JAVASCRIPTCORE_DIR}/yarr"
"${WTF_DIR}"
+ "${DERIVED_SOURCES_DIR}"
"${DERIVED_SOURCES_DIR}/ForwardingHeaders"
"${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}"
"${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/inspector"
+2014-08-12 Alex Christensen <achristensen@webkit.org>
+
+ Generate header detection headers for CMake on Windows.
+ https://bugs.webkit.org/show_bug.cgi?id=135807
+
+ Reviewed by Brent Fulgham.
+
+ * CMakeLists.txt:
+ * PlatformWin.cmake:
+ Generate and include a stub WebCoreHeaderDetection.h.
+
2014-08-12 Renata Hodovan <rhodovan.u-szeged@partner.samsung.com>
Make sure that begin time cannot be greater than SMILTime::indefiniteValue unintentionally.
plugins/PluginViewNone.cpp
)
endif ()
+
+list(APPEND WebCore_SOURCES
+ "${DERIVED_SOURCES_WEBCORE_DIR}/WebCoreHeaderDetection.h"
+)
+
+# FIXME: This should test if AVF headers are available.
+# https://bugs.webkit.org/show_bug.cgi?id=135861
+add_custom_command(
+ OUTPUT "${DERIVED_SOURCES_WEBCORE_DIR}/WebCoreHeaderDetection.h"
+ WORKING_DIRECTORY "${DERIVED_SOURCES_WEBCORE_DIR}"
+ COMMAND echo /* Identifying AVFoundation Support */ > WebCoreHeaderDetection.h
+ VERBATIM)