File: example.pro

package info (click to toggle)
opencsg 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 8,980 kB
  • sloc: ansic: 54,939; cpp: 5,252; sh: 1,531; perl: 876; makefile: 595; python: 135
file content (24 lines) | stat: -rw-r--r-- 451 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
TEMPLATE = app
TARGET = opencsgexample

CONFIG += opengl warn_on release
CONFIG -= qt
INCLUDEPATH += ../include
LIBS += -L../lib -lopencsg -lGLEW -lGL

isEmpty(INSTALLDIR) {
  INSTALLDIR = /usr/local
}
INSTALLS += target
target.path = $$INSTALLDIR/bin

macx {
  INCLUDEPATH += /opt/local/include
  LIBS += -framework GLUT -L/opt/local/lib
}
else {
  LIBS += -lGLU -lglut
}

HEADERS = displaylistPrimitive.h
SOURCES	= displaylistPrimitive.cpp main.cpp