Changeset 141942 in webkit


Ignore:
Timestamp:
Feb 5, 2013 3:40:30 PM (11 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

[CMake] Don't warn unused cmake variables which aren't used by cmake ports
https://bugs.webkit.org/show_bug.cgi?id=108761

Reviewed by Laszlo Gombos.

Ignore unused macro variables which aren't used by cmake ports.

  • Scripts/webkitdirs.pm:

(generateBuildSystemFromCMakeProject):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r141941 r141942  
     12013-02-05  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [CMake] Don't warn unused cmake variables which aren't used by cmake ports
     4        https://bugs.webkit.org/show_bug.cgi?id=108761
     5
     6        Reviewed by Laszlo Gombos.
     7
     8        Ignore unused macro variables which aren't used by cmake ports.
     9
     10        * Scripts/webkitdirs.pm:
     11        (generateBuildSystemFromCMakeProject):
     12
    1132013-02-05  Julie Parent  <jparent@chromium.org>
    214
  • trunk/Tools/Scripts/webkitdirs.pm

    r141683 r141942  
    21952195        push @args, "-DCMAKE_BUILD_TYPE=Debug";
    21962196    }
     2197    # Don't warn variables which aren't used by cmake ports.
     2198    push @args, "--no-warn-unused-cli";
    21972199    push @args, @cmakeArgs if @cmakeArgs;
    21982200    push @args, $additionalCMakeArgs if $additionalCMakeArgs;
Note: See TracChangeset for help on using the changeset viewer.