blob: 0ae05d2a4d5a2cdafc8f49ebbc9fc4eebe2b9fe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
opencsg {
DEFINES += ENABLE_OPENCSG
LIBS += -lopencsg
unix:LIBS += -lGLEW
win32:LIBS += -lglew32
# 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
}
macx {
# For glew
INCLUDEPATH += /opt/local/include
LIBS += -L/opt/local/lib
}
}
|