开发者

How to do an out of source build with scons?

I have been using cmake to build my projects out of source, which is really convenient as you avoid polluting your source directory with unnecessary files.

Assuming the CMakeLists.txt is in the current directory, this could be done as follows:

mkdir build
cd build
cmake ..
make

How can I do the sa开发者_运维知识库me in scons?


In your SConstruct file, you use a variant dir:

SConscript("main.scons", variant_dir="build", duplicate=0)

Then in main.scons you set up everything as usual:

env = Environment()
env.Program(target='foo', source=Split('foo.c bar.c'))

It's possible to do this without hardcoding the variant dir into the SConstruct by (ab)using repositories, but that approach has its bugs. For the record, you would run the above as follows to build in another directory:

mkdir mybuild
cd mybuild
scons -Y .. -f ../main.scons

The easiest and most workable is to just use variant_dir. You then run this as usual from the top level source directory. All the build artefacts get produced in the build sub directory.

In response to JesperE's comment, here is how you could write the top level SConstruct to add an optionally named build directory:

AddOption('--build', default='build')
SConscript("main.scons", variant_dir=GetOption('build'), duplicate=0)

Then you would call this from the command line as follows, to create a build directory called "baz":

$ scons --build=baz
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜