blob: 5915cb684865e87381fb4030aaa494f11ea93046 (
plain) (
blame)
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
|
Disable debug; runs into cryptic errors on 9+/amd64
--- plugins/plugins.pri.orig 2013-06-04 10:06:48.955586932 -0500
+++ plugins/plugins.pri 2013-06-04 10:07:37.450613576 -0500
@@ -1,7 +1,7 @@
include(../compiler.pri)
TEMPLATE = lib
-CONFIG += plugin debug_and_release warn_on
+CONFIG += plugin warn_on
CONFIG -= qt
DIST *= mumble_plugin.h
@@ -10,12 +10,7 @@
CONFIG += qt_dynamic_lookup
}
-CONFIG(debug, debug|release) {
- CONFIG += console
- DESTDIR = ../../debug/plugins
-}
-
-CONFIG(release, debug|release) {
+CONFIG(release, release) {
DESTDIR = ../../release/plugins
}
|