blob: 8159a926a7974467176c96b082a17f6c90562112 (
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
|
## Copyright (C) 2011 Gabriel Dos Reis
## Autoconf template file for the benefit of QMake
## Written by Gabriel Dos Reis.
OA_INC =
OA_LIB =
TEMPLATE = app
TARGET = gui
## Tell QT that sources are not in the build directory
VPATH += @srcdir@
## Our headers
HEADERS += conversation.h main-window.h debate.h
INCLUDEPATH += @srcdir@
DEPENDPATH += @srcdir@
## Source files
SOURCES += conversation.C main-window.C debate.C main.C
## Additional support libraries
LIBS += $$OA_LIB
## C++ compiler
#QMAKE_CXX = @CXX@
#QMAKE_CXXFLAGS += @CXXFLAGS@
|