diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-22 17:00:01 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-22 17:00:01 (GMT) |
commit | 63948eeb1570e4be777ee4c3c158bd84714a3f48 (patch) | |
tree | 1182e7e5feecb19636bcff3a29505de496f47657 | |
parent | 0ea40045816524a563e46d5d1a0a4b5025b6b923 (diff) |
Evaluate env.var at make-time, not qmake-time
git-svn-id: http://svn.clifford.at/openscad/trunk@342 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | openscad.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openscad.pro b/openscad.pro index d8b46cf..0e3fccd 100644 --- a/openscad.pro +++ b/openscad.pro @@ -55,7 +55,7 @@ opencsg { # Optionally specify location of OpenCSG using the # OPENCSGDIR env. variable - OPENCSG_DIR = $$(OPENCSGDIR) + OPENCSG_DIR = $(OPENCSGDIR) !isEmpty(OPENCSG_DIR) { INCLUDEPATH += $$OPENCSG_DIR/include LIBS += -L$$OPENCSG_DIR/lib |