diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-15 03:59:15 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-15 03:59:15 (GMT) |
commit | b74bb392afbeee062b9654dac78950fc85c4c884 (patch) | |
tree | fa24632088f8dee0f91d8500619a820d61d4b030 /opencsg.pri | |
parent | 6d3304a30669b24bec9d70c4086ee109e47aefb0 (diff) |
generalized MACOSX_DEPLOY_DIR into the platform-independent OPENSCAD_LIBRARIES
Diffstat (limited to 'opencsg.pri')
-rw-r--r-- | opencsg.pri | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/opencsg.pri b/opencsg.pri index d34f11b..9713410 100644 --- a/opencsg.pri +++ b/opencsg.pri @@ -6,13 +6,13 @@ opencsg { HEADERS += src/OpenCSGRenderer.h SOURCES += src/OpenCSGRenderer.cc - isEmpty(DEPLOYDIR) { + isEmpty(OPENSCAD_LIBDIR) { # Optionally specify location of OpenCSG using the # OPENCSGDIR env. variable OPENCSG_DIR = $$(OPENCSGDIR) !isEmpty(OPENCSG_DIR) { - INCLUDEPATH += $$OPENCSG_DIR/include - LIBS += -L$$OPENCSG_DIR/lib + QMAKE_INCDIR += $$OPENCSG_DIR/include + QMAKE_LIBDIR += $$OPENCSG_DIR/lib message("OpenCSG location: $$OPENCSG_DIR") } } |