Scons. Go recursive with Glob

前端 未结 4 1578
一个人的身影
一个人的身影 2021-01-13 06:51

I using scons for a few days and confused a bit. Why there is no built-in tools for building sources recursively starting from given root? Let me explain: I have such source

相关标签:
4条回答
  • 2021-01-13 07:24

    I use this:

    srcdir = './'
    sources = [s for s in glob2.glob(srcdir + '**/*.cpp') if "/." not in s]
    
    0 讨论(0)
  • 2021-01-13 07:25

    As Torsten already said, there is no "internal" recursive Glob() in SCons. You need to write something yourself. My solution is:

    import fnmatch
    import os
    
    matches = []
    for root, dirnames, filenames in os.walk('src'):
      for filename in fnmatch.filter(filenames, '*.c'):
        matches.append(Glob(os.path.join(root, filename)[len(root)+1:]))
    

    I want to stress that you need Glob() here (not glob.glob() from python) especially when you use VariantDir(). Also when you use VariantDir() don't forget to convert absolute paths to relative (in the example I achieve this using [len(root)+1:]).

    0 讨论(0)
  • 2021-01-13 07:25

    The Glob() SCons function doesnt have the ability to go recursive.

    It would be much more efficient if you change your Python code to use the list.extend() function, like this:

    sources = Glob('./builds/Std/*/*.cpp')
    sources.extend(Glob('./builds/Std/*.cpp'))
    sources.extend(Glob('./builds/Std/*/*/*.cpp'))
    sources.extend(Glob('./builds/Std/*/*/*/*.cpp'))
    

    Instead of trying to go recursive like you are, its quite common to have a SConscript script in each subdirectory and in the root SConstruct call each of them with the SConscript() function. This is called a SCons hierarchical build.

    0 讨论(0)
  • 2021-01-13 07:31

    Sure. You need to write python wrappers to walking through dirs. You can find many recipes on stackoverflow. Here is my simple function which returns list of subdirs in present dir (and ignore hide dirs starting with '.' - dot)

    def getSubdirs(abs_path_dir) :  
        lst = [ name for name in os.listdir(abs_path_dir) if os.path.isdir(os.path.join(abs_path_dir, name)) and name[0] != '.' ]
        lst.sort()
        return lst
    

    For example, i've dir modules what containts foo, bar, ice.

    corePath = 'abs/path/to/modules'
    modules = getSubdirs(corePath)
    # modules = [bar, foo, ice]
    for module in modules :
      sources += Glob(os.path.join(corePath, module, '*.cpp'))
    

    You can improve getSubdirs function adding recurse and walking deeper to subdirs.

    0 讨论(0)
提交回复
热议问题