SCons C++ A Simple Build

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

It is very easy to build a simple C++ project. Here is an example of a SConstruct file that does so:

env=Environment()

env.Program('hello', Glob('src/*.cpp'))

This creates the executable hello composed of all the sources in src with extension cpp.



Got any SCons Question?