cacicD.pro
1.37 KB
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
48
49
50
51
#-------------------------------------------------
#
# Project created by QtCreator 2014-08-18T11:06:08
#
#-------------------------------------------------
QT += core
QT -= gui
QT += network
TARGET = cacic-service
CONFIG += console
CONFIG -= app_bundle
CONFIG += static
TEMPLATE = app
INCLUDEPATH += ../../src \
../../src/crypto++/include/
win32 {
LIBS += -LE:\LightBase\cacic-agente-project\cacic-agente\src\crypto++\lib -lcryptopp
QT += axcontainer
} else {
LIBS += -L/usr/lib -lcryptopp
}
SOURCES += main.cpp \
cacicd.cpp \
cacictimer.cpp \
cacicthread.cpp \
../../src/cacic_comm.cpp \
../../src/ccacic.cpp \
../../src/wmi.cpp \
../../src/cacic_computer.cpp \
../../src/operatingsystem.cpp \
../../src/QLogger.cpp \
../../src/checkmodules.cpp
HEADERS += cacicd.h \
cacictimer.h \
cacicthread.h \
../../src/ccacic.h \
../../src/wmi.h \
../../src/cacic_computer.h \
../../src/operatingsystem.h \
../../src/cacic_comm.h \
../../src/QLogger.h \
../../src/checkmodules.h
include(../../src/qtservice/src/qtservice.pri)