6
votes
3answers
332 views
Are there any libraries/frameworks for SCons?
Each project using SCons seems to be reinventing the wheel.
I would be glad to take someones directory layout, and/or solution for variant builds(debug/release), and/or testing framework, and/or best …
5
votes
6answers
562 views
Building C++ on both Windows and Linux
Hi,
I'm involved in C++ project targeted for Windows and Linux (RHEL) platforms. Till now the development was purely done on Visual Studio 2008. For Linux compilation we used 3rd party Visual Studio …
5
votes
2answers
672 views
How do I get projects to place their build output into the same directory with Scons?
Background
I'm trying out Scons by setting up a basic C++ sample project that has two sub-projects:
Prj1 is an EXE that depends on Prj2
Prj2 is a DLL that exports some functions
The problem I'm …
3
votes
4answers
545 views
ant+cpptasks vs. scons vs. make
I'm looking into scons and I just want to make sure I know what the alternatives are, before I invest a chunk of brain cells into something completely different. I've been using GNU make in the past …
3
votes
2answers
429 views
SCons, Boost::ASIO, Windows Precompiled Headers, and Linker Errors
I'm investigating using SCons for our build process as we develop C++ for multiple platforms. I'm 99% of the way there in the build configuration, but I'm running into a VERY strange error on Windows …
3
votes
4answers
179 views
What do you do to make compiler lines shorter?
Often when I'm working on a project with others, the amount of library paths and include paths that get sourced by the compiler in the Makefile get more numerous as time goes by. Also the paths can …
2
votes
2answers
73 views
Building an iPhone application from the command line, without xcodebuild
It is possible to build an iPhone application manually, without using xcodebuild nor an Xcode project?
The idea is to build the application using SCons without creating an Xcode project. I know there …
2
votes
2answers
74 views
Visual Studio Solution to SCONS?
Is there any tool that can convert a large and complex* Visual Studio 2005 (or 2008) Solution into a SCons project?
* Lots of projects and multiple configurations on multiple platforms/compilers
2
votes
1answer
40 views
Scons adds disk name prefix to NFS LIBPATH
Hi I'm building environment with Scons.
For Windows platform (link) linker gets Scons setup
of my share library path with prefix - disk name
I've library on NFS:
libs='\\\\share\\lib\\lib'
In …
2
votes
4answers
97 views
equivalent of “touch” in scons?
scons uses MD5 hashes rather than file mod times to determine if a dependency needs to be built.
I want this to be the default behavior. But is there any way to force it to assume a particular file …
2
votes
1answer
82 views
force scons to use Sconstruct file as a global dependency
Is there any way to cause scons to force-build all targets when the Sconstruct file itself changes?
(reasoning being that if I change a build setting, I can't rely on a previously built file to be …
2
votes
4answers
152 views
Is it possible to automatically generate Xcode projects?
Simple question. Are there any tools for generating Xcode projects from the command line? We use SCons to build our cross-platform application, but that doesn't support intrinsic Xcode project …
2
votes
2answers
176 views
How to debug SCons scripts using eclipse and pydev?
I'm a newbie to SCons and also using pydev. Can someone help me with instructions on how to debug scons scripts using Eclipse and pydev? Is it even possible considering the fact that SCons is a …
2
votes
1answer
250 views
How do I use Qt and Scons together?
Dear all,
I'm looking to use SCons as my prefered method of building my mainly Qt based applications. I'm just learning SCons and I'm struggling to find documentation or tutorials on the topic. Can …
2
votes
3answers
174 views
unit test build files
What are the best policies for unit testing build files?
The reason I ask is my company produces highly reliable embedded devices. Software patches are just not an option, as they cost our customers …
