How to force Scons output (exe, obj, lib & dll) to specific build directory?

后端 未结 4 1254
滥情空心
滥情空心 2020-12-18 23:07

I\'ve been trying to get scons to output exe, obj, lib and dll files to a specific build directory.

My file structure looks like this:

/projectdir
          


        
相关标签:
4条回答
  • 2020-12-18 23:41

    The easiest way I've found is to use 2 files, a SConstruct file and a separate SConscript.

    In the SConstruct you simply call the other file and specify the directory for the build output:

    # content SConstruct
    SConscript('main.scons', variant_dir='build', duplicate=0)
    

    Then in 'main.scons' you do the meat of your build. You can forget about variant directories in this file.

    # content of main.scons
    env = Environment()
    env.Program('Hierarchy',
                source = ['source/sconstest.cpp', 'source/utils/IntUtil.cpp'])
    
    0 讨论(0)
  • 2020-12-18 23:41

    The VariantDir (also described in the user guide) tells scons to put generated files in a separate directory. In older versions of scons this function was named BuildDir.

    You may also want to read up on avoiding duplicating the source directory (described both in the user guide and on the wiki).

    0 讨论(0)
  • 2020-12-18 23:44

    It's not that tough to get VariantDir working using only one SConstruct file (for a small project), but it's very confusing as the configuration is different for the one-file and two-file use case.

    Only SConstruct:

    env = Environment()
    env.VariantDir('build', 'src', duplicate=0)
    files = Glob('build\*.c')
    env.Program("build\program", files)
    

    Notice how the source files are located in .\src but .\build is specified as the location. The output has to be also "prefixed" with .\build otherwise the compiled program will reside in the directory of the SConstruct file.

    When you execute the script SCons will compile the *.c files from .\src and put the resulting objects to .\build.

    No wonder they renamed BuildDir to VariantDir to try to avoid the confusion (without much success).

    0 讨论(0)
  • 2020-12-18 23:55

    I was using a two-file method like richq's answer, but although the final build products (libs, programs) were going into the right variant directory, the object files were still going to the source directory.

    The solution turned out to be to glob the source files by relative path instead of absolute. I have no idea why.

    My second scons file originally looked like this. Note globbing by absolute path - when I first wrote this I didn't realize paths would automatically be relative to the scons file.

    import os, inspect
    env = Environment()
    packageDir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
    src = Glob(os.path.join(packageDir, "src/*/*.c*"), strings=True, source=True)
    env.Program('Foo', source = src)
    

    And that resulted in *.obj ending up under src/ and the program under my variant dir. When I changed it to the following, the object files also went to the variant dir:

    env = Environment()
    src = Glob("src/*/*.c*", strings=True, source=True) 
    env.Program('Foo', source = src)
    

    Using absolute paths is probably a noob mistake - I'm relatively new to both scons and Python - but I thought I'd share it in case anyone else has the same frustrating problem.

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