Welcome to mirror list, hosted at ThFree Co, Russian Federation.

overlay_exe-shared.pro « overlay_exe « overlay - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a5e414ecb82da78aa5aa1e557b89ced9b2fe1df (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
# Copyright 2005-2016 The Mumble Developers. All rights reserved.
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file at the root of the
# Mumble source tree or at <https://www.mumble.info/LICENSE>.

include(../../compiler.pri)

TEMPLATE = app
CONFIG -= qt
CONFIG += debug_and_release
TARGET = mumble_ol_helper

win32 {
  DEFINES += WIN32 _WIN32
  RC_FILE = overlay_exe.rc
  LIBS *= -luser32 -lshlwapi -lshell32

  CONFIG(release, debug|release) {
    QMAKE_CXXFLAGS_RELEASE -= -MD
    QMAKE_CXXFLAGS += -MT
  }
  CONFIG(debug, debug|release) {
    QMAKE_CXXFLAGS_DEBUG -= -MDd
    QMAKE_CXXFLAGS += -MTd
  }
}

SOURCES *= overlay_exe.cpp

QMAKE_POST_LINK = $$QMAKE_POST_LINK$$escape_expand(\\n\\t)$$quote(mt.exe -nologo -updateresource:$(DESTDIR_TARGET);1 -manifest ../../src/mumble/mumble.appcompat.manifest)

CONFIG(debug, debug|release) {
  CONFIG += console
  DEFINES *= DEBUG
  DESTDIR	= ../../debug
}

CONFIG(release, debug|release) {
  DEFINES *= NDEBUG
  DESTDIR	= ../../release
}

include(../../symbols.pri)