Changeset 47207 in webkit


Ignore:
Timestamp:
Aug 13, 2009 10:13:57 AM (15 years ago)
Author:
kevino@webkit.org
Message:

wx build fix. Make sure that the wxWebKit dynamic library is rebuilt whenever webcore or jscore libs change.

Location:
trunk/WebKit/wx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/wx/ChangeLog

    r47124 r47207  
     12009-08-13  Kevin Ollivier  <kevino@theolliviers.com>
     2
     3        wx build fix. Make sure that the wxWebKit dynamic library is rebuilt whenever
     4        webcore or jscore libs change.
     5
     6        * wscript:
     7
    182009-08-12  Kevin Ollivier  <kevino@theolliviers.com>
    29
  • trunk/WebKit/wx/wscript

    r46695 r47207  
    5555    common_configure(conf)
    5656   
     57def pre_build(bld):
     58    """
     59    The wxWebKit library should be rebuilt if jscore or webcore changes,
     60    so we make those static libs as dependencies.
     61    """
     62    libjscore = os.path.join(output_dir, 'libjscore.a')
     63    libwebcore = os.path.join(output_dir, 'libwebcore.a')
     64   
     65    assert os.path.exists(libjscore)
     66    assert os.path.exists(libwebcore)
     67   
     68    bld.env.CXXDEPS_JSCORE = Utils.h_file(libjscore)
     69    bld.env.CXXDEPS_WEBCORE = Utils.h_file(libwebcore)
     70   
    5771def build(bld):
     72    bld.add_pre_fun(pre_build)
     73
    5874    obj = bld.new_task_gen(
    5975        features = 'cxx cshlib implib',
Note: See TracChangeset for help on using the changeset viewer.