We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following the build/README instructions, to build FaustLive:
cd Build mkdir flbuild cd flbuild qmake .. make
i don't see any generated binaries in the Build/flbuild/ directory.
Build/flbuild/
Instead, all built-artifacts (currently only the FaustLive binary itself) are put into Build/FaustLive/.
FaustLive
Build/FaustLive/
This is bad, as it doesn't satisfy the out-of-tree build expectations, namely:
afaict, the solution is simply to change the DESTDIR line in Build/FaustLive.pro (removing the $$PWD) to:
DESTDIR
Build/FaustLive.pro
$$PWD
DESTDIR = FaustLive
This allows me to do things like:
$ for q in 4 5 do mkdir /tmp/faustlive-qt${q} cd /tmp/faustlive-qt${q} QT_SELECT=${q} qmake /media/cdrom/FaustLive-2.5.2/Build && make -j8 done $
and have a QT4 version in /tmp/faustlive-qt4/FaustLive/FaustLive and a QT5 version in /tmp/faustlive-qt5/FaustLive/FaustLive
/tmp/faustlive-qt4/FaustLive/FaustLive
/tmp/faustlive-qt5/FaustLive/FaustLive
The text was updated successfully, but these errors were encountered:
Don't use $$PWD for DESTDIR
bdea9e9
Closes: grame-cncm#25
No branches or pull requests
Following the build/README instructions, to build FaustLive:
i don't see any generated binaries in the
Build/flbuild/
directory.Instead, all built-artifacts (currently only the
FaustLive
binary itself) are put intoBuild/FaustLive/
.This is bad, as it doesn't satisfy the out-of-tree build expectations, namely:
afaict, the solution is simply to change the
DESTDIR
line inBuild/FaustLive.pro
(removing the$$PWD
) to:This allows me to do things like:
and have a QT4 version in
/tmp/faustlive-qt4/FaustLive/FaustLive
and a QT5 version in/tmp/faustlive-qt5/FaustLive/FaustLive
The text was updated successfully, but these errors were encountered: