Tagged Questions
The out-of-source tag has no wiki summary.
4
votes
1answer
1k views
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 ...
3
votes
1answer
78 views
How do I prevent qmake creating an extra “moc” folder in this 'out of source' build scenario?
(Apologies, I can't think of a better way of explaining except through including the following detail)
Pre-build structure:
F:\
└ Project\
└ Project.pro
└ ProjectSettings.pri
└ Source\
└ ...
2
votes
3answers
727 views
Proper way to get an out-of source build in multi-part cmake project
I use cmake to build, test and install my project.
My way is a little crude: I use a scripts like this to get an out-of-source build:
DIR=debug_build &&
rm -fr ./${DIR} &&
mkdir -p ...