blob: bcc8a66721dcf6f8b28d0c2547ee82780cae9dfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.
diff -ur OpenCSG-1.4.1.orig/example/example.pro OpenCSG-1.4.1/example/example.pro
--- OpenCSG-1.4.1.orig/example/example.pro 2016-09-08 23:08:33.000000000 +0200
+++ OpenCSG-1.4.1/example/example.pro 2016-09-11 14:24:18.839741352 +0200
@@ -1,10 +1,10 @@
TEMPLATE = app
TARGET = opencsgexample
-CONFIG += opengl warn_on release
+CONFIG += opengl warn_on release link_pkgconfig
CONFIG -= qt
INCLUDEPATH += ../include
-LIBS += -L../lib -lopencsg -lGLEW
+LIBS += -L../lib -lopencsg
INSTALLDIR = /usr/local
INSTALLS += target
@@ -15,7 +15,8 @@
LIBS += -framework GLUT -L/opt/local/lib
}
else {
- LIBS += -lGLU -lglut
+ LIBS += -lglut
+ PKGCONFIG += glew glut
}
HEADERS = displaylistPrimitive.h
diff -ur OpenCSG-1.4.1.orig/src/src.pro OpenCSG-1.4.1/src/src.pro
--- OpenCSG-1.4.1.orig/src/src.pro 2016-09-08 23:08:33.000000000 +0200
+++ OpenCSG-1.4.1/src/src.pro 2016-09-11 14:25:15.833496135 +0200
@@ -6,10 +6,11 @@
INSTALLDIR = /usr/local
}
-CONFIG += opengl warn_on release
+CONFIG += opengl warn_on release link_pkgconfig
INCLUDEPATH += ../include ../ $$INSTALLDIR/include
CONFIG -= qt
-LIBS += -L$$INSTALLDIR/lib -lGLEW
+LIBS += -L$$INSTALLDIR/lib
+PKGCONFIG += glew glut
DESTDIR = ../lib
headers.files = ../include/opencsg.h
|