1 | # $Id: Makefile.kmk 88604 2021-04-20 15:40:54Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for tstClipboardQt.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2011-2020 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | SUB_DEPTH = ../../../../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | #
|
---|
22 | # Targets and units.
|
---|
23 | #
|
---|
24 | USES += qt5
|
---|
25 | #LIBRARIES += VBox-chmlib VBox-libchmfile
|
---|
26 | PROGRAMS += tstClipboardQt
|
---|
27 |
|
---|
28 |
|
---|
29 |
|
---|
30 | #
|
---|
31 | # tstClipboardQt
|
---|
32 | #
|
---|
33 | tstClipboardQt_TEMPLATE = VBOXQTGUIEXE
|
---|
34 | tstClipboardQt_NAME = tstClipboardQt
|
---|
35 | tstClipboardQt_CXXFLAGS = \
|
---|
36 | $(VBOX_GCC_Wno-implicit-fallthrough) \
|
---|
37 | $(VBOX_GCC_Wno-deprecated-declarations)
|
---|
38 | #kchmviewer4_LIBS = \
|
---|
39 | # $(VBox-libchmfile_1_TARGET) \
|
---|
40 | # $(VBox-chmlib_1_TARGET)
|
---|
41 | #kchmviewer4_INCS = \
|
---|
42 | # ./lib/libchmfile \
|
---|
43 | # ./chmlib-0.39/src \
|
---|
44 | # .
|
---|
45 |
|
---|
46 | # Headers containing definitions of classes that use the Q_OBJECT macro.
|
---|
47 | #kchmviewer4_QT_MOCHDRS = \
|
---|
48 | # src/kchmviewwindowmgr.h \
|
---|
49 | # src/kchmviewwindow_qtextbrowser.h \
|
---|
50 | # src/kchmdialogchooseurlfromlist.h \
|
---|
51 | # src/kchmbookmarkwindow.h \
|
---|
52 | # src/kchmsetupdialog.h \
|
---|
53 | # src/kchmmainwindow.h \
|
---|
54 | # src/kchmindexwindow.h \
|
---|
55 | # src/kchmcontentswindow.h \
|
---|
56 | # src/kchmsearchwindow.h
|
---|
57 |
|
---|
58 | tstClipboardQt_SOURCES = \
|
---|
59 | tstClipboardQt.cpp
|
---|
60 |
|
---|
61 | # The Qt modules we're using.
|
---|
62 | tstClipboardQt_QT_MODULES = Core Gui Widgets PrintSupport
|
---|
63 |
|
---|
64 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
65 |
|
---|