blob: 30e70349823f22cf3f0e92e6620d92c4a38ac5b7 (
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
|
## Copyright (C) 2011 Gabriel Dos Reis.
## All rights reserved.
## Autoconf template file for the benefit of QMake
## Written by Gabriel Dos Reis.
oa_targetdir = @top_builddir@/@target@
OA_INC = $${oa_targetdir}/include
OA_LIB = -L@top_builddir@/@target@/lib -lOpenAxiom
OA_IOLIB = -L@top_builddir@/src/io -lio
## We build in release mode.
CONFIG += release
## But, don't think we want an app bundle, yet.
macx {
CONFIG -= app_bundle
}
## We are building a GUI application.
TEMPLATE = app
## Put the executable directly in the staged bin directory.
DESTDIR = @top_builddir@/@target@/bin
TARGET = gui
## Tell QT that sources are not in the build directory
VPATH += @srcdir@
## Our headers
HEADERS += server.h conversation.h main-window.h debate.h
INCLUDEPATH += $$OA_INC
INCLUDEPATH += @srcdir@
INCLUDEPATH += @top_srcdir@/src/include
INCLUDEPATH += @top_builddir@/config
DEPENDPATH += @srcdir@
## Source files
SOURCES += server.cc conversation.cc main-window.cc debate.cc main.cc
## Additional support libraries
LIBS += $$OA_LIB $$OA_IOLIB
## C++ compiler
#QMAKE_CXX = @CXX@
QMAKE_CXXFLAGS += -std=c++11
|