Changeset 207794 in webkit


Ignore:
Timestamp:
Oct 24, 2016 5:45:03 PM (8 years ago)
Author:
pvollan@apple.com
Message:

[Win] CMake build type is not set.
https://bugs.webkit.org/show_bug.cgi?id=163917

Reviewed by Alex Christensen.

The CMAKE_BUILD_TYPE variable should be set to Debug or Release.

Source/JavaScriptCore:

Source/WebCore:

  • WebCore.vcxproj/WebCore.proj:

Source/WebKit:

  • WebKit.vcxproj/WebKit.proj:

Source/WTF:

  • WTF.vcxproj/WTF.proj:
Location:
trunk/Source
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r207791 r207794  
     12016-10-24  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] CMake build type is not set.
     4        https://bugs.webkit.org/show_bug.cgi?id=163917
     5
     6        Reviewed by Alex Christensen.
     7
     8        The CMAKE_BUILD_TYPE variable should be set to Debug or Release.
     9
     10        * JavaScriptCore.vcxproj/JavaScriptCore.proj:
     11
    1122016-10-24  Chris Dumez  <cdumez@apple.com>
    213
  • trunk/Source/JavaScriptCore/JavaScriptCore.vcxproj/JavaScriptCore.proj

    r205192 r207794  
    2929    <ConfigurationBuildDir>$(OBJROOT)\$(CONFIG)</ConfigurationBuildDir> 
    3030    <OutputDirectory>$(DSTROOT)</OutputDirectory>
    31         <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DJAVASCRIPTCORE_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
     31        <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DJAVASCRIPTCORE_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
    3232  </PropertyGroup>
    3333 
  • trunk/Source/WTF/ChangeLog

    r207787 r207794  
     12016-10-24  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] CMake build type is not set.
     4        https://bugs.webkit.org/show_bug.cgi?id=163917
     5
     6        Reviewed by Alex Christensen.
     7
     8        The CMAKE_BUILD_TYPE variable should be set to Debug or Release.
     9
     10        * WTF.vcxproj/WTF.proj:
     11
    1122016-10-23  Yusuke Suzuki  <utatane.tea@gmail.com>
    213
  • trunk/Source/WTF/WTF.vcxproj/WTF.proj

    r197414 r207794  
    2929    <ConfigurationBuildDir>$(OBJROOT)\$(CONFIG)</ConfigurationBuildDir>
    3030    <OutputDirectory>$(DSTROOT)</OutputDirectory>
    31         <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DWTF_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
     31        <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DWTF_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
    3232  </PropertyGroup>
    3333
  • trunk/Source/WebCore/ChangeLog

    r207793 r207794  
     12016-10-24  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] CMake build type is not set.
     4        https://bugs.webkit.org/show_bug.cgi?id=163917
     5
     6        Reviewed by Alex Christensen.
     7
     8        The CMAKE_BUILD_TYPE variable should be set to Debug or Release.
     9
     10        * WebCore.vcxproj/WebCore.proj:
     11
    1122016-10-24  Yusuke Suzuki  <utatane.tea@gmail.com>
    213
  • trunk/Source/WebCore/WebCore.vcxproj/WebCore.proj

    r197414 r207794  
    2929    <ConfigurationBuildDir>$(OBJROOT)\$(CONFIG)</ConfigurationBuildDir> 
    3030    <OutputDirectory>$(DSTROOT)</OutputDirectory>
    31         <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DINTERNAL_BUILD=1 -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DWEBCORE_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
     31        <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DINTERNAL_BUILD=1 -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DWEBCORE_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
    3232  </PropertyGroup>
    3333 
  • trunk/Source/WebKit/ChangeLog

    r207585 r207794  
     12016-10-24  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] CMake build type is not set.
     4        https://bugs.webkit.org/show_bug.cgi?id=163917
     5
     6        Reviewed by Alex Christensen.
     7
     8        The CMAKE_BUILD_TYPE variable should be set to Debug or Release.
     9
     10        * WebKit.vcxproj/WebKit.proj:
     11
    1122016-10-19  Alex Christensen  <achristensen@webkit.org>
    213
  • trunk/Source/WebKit/WebKit.vcxproj/WebKit.proj

    r197414 r207794  
    2929    <ConfigurationBuildDir>$(OBJROOT)\$(CONFIG)</ConfigurationBuildDir> 
    3030    <OutputDirectory>$(DSTROOT)</OutputDirectory>
    31         <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DWEBKIT_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
     31        <CMakeCommandCommon>cmake $(SRCROOT) -DPORT=AppleWin $(DebugSuffixDefinition) -DWEBKIT_LIBRARIES_DIR=$(WebKit_Libraries.Replace('\','/')) -DCMAKE_MODULE_PATH=$(SRCROOT.Replace('\','/'))/AppleInternal/tools/cmake -DCMAKE_BINARY_DIR=$(OBJROOT.Replace('\','/'))/$(CONFIG) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DWEBKIT_DIR=$(SRCROOT.Replace('\','/'))</CMakeCommandCommon>
    3232  </PropertyGroup>
    3333 
Note: See TracChangeset for help on using the changeset viewer.