Changeset 25455

Show
Ignore:
Timestamp:
05/11/08 13:07:30 (6 days ago)
Author:
mmu_man
Message:
Automatically add subfolders with a Jamfile in 3rdparty.
This allows hooking your own projects locally without having to touch this file, and have to resolve conflicts on svn up.
One still must configure --enable-3rdparty of course or add this to UserBuildConfig:
HAIKU_INCLUDE_3RDPARTY = 1 ;
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • haiku/trunk/3rdparty/Jamfile

    r23419 r25455  
    11SubDir HAIKU_TOP 3rdparty ; 
    22 
    3 SubInclude HAIKU_TOP 3rdparty mmu_man ; 
     3# automatically pick any subdir that contains a Jamfile 
     4# this should allow hooking projects locally 
     5# without having to touch this file and get conflicts when it is updated. 
     6for subdir in [ GLOB $(SUBDIR) : [^.]* ] { 
     7        if [ GLOB $(subdir:G=) : Jamfile ] { 
     8                SubInclude HAIKU_TOP 3rdparty $(subdir:D=) ; 
     9        } 
     10