-
Notifications
You must be signed in to change notification settings - Fork 1
/
vagrantGui.pro
43 lines (32 loc) · 1.04 KB
/
vagrantGui.pro
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
QT += core gui script
TARGET = vagrantGui
TEMPLATE = app
win32 {
LIBS += -lOle32 -lOleAut32
SOURCES += sdk/bindings/mscom/lib/VirtualBox_i.c
INCLUDEPATH += sdk/bindings/mscom/include
}
unix {
HEADERS += sdk/bindings/xpcom/cbinding/VBoxXPCOMCGlue.h
SOURCES += sdk/bindings/xpcom/cbinding/VBoxXPCOMCGlue.c
INCLUDEPATH += sdk/bindings/xpcom/include\
sdk/bindings/xpcom/include/xpcom\
sdk/bindings/xpcom/include/string\
sdk/bindings/xpcom/include/nsprpub
macx {
INCLUDEPATH += /Applications/Xcode.app/Contents/Developer/Headers/FlatCarbon
DEFINES += _M_AMD64\
RT_OS_DARWIN
QMAKE_LFLAGS += -framework Carbon
} else {
DEFINES += RT_OS_LINUX
}
}
HEADERS += mainwindow.h \
virtualboxunifiedinterface.h \
vagrantinterface.h
SOURCES += main.cpp\
mainwindow.cpp \
virtualboxunifiedinterface.cpp \
vagrantinterface.cpp
RESOURCES += data.qrc