forked from qt/qtbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc: Make network snippets a subdirs/lib project
Task-number: QTBUG-86497 Pick-to: 5.15 Change-Id: I45eb22344beb777dd4ad20ba669b28e50cbfc3ec Reviewed-by: Qt CI Bot <[email protected]> Reviewed-by: Tor Arne Vestbø <[email protected]>
- Loading branch information
1 parent
f4ee893
commit 8333ff6
Showing
2 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
TEMPLATE = lib | ||
TARGET = network_snippet | ||
QT = core network | ||
|
||
SOURCES = \ | ||
tcpwait.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
TEMPLATE = app | ||
|
||
TEMPLATE = subdirs | ||
TARGET = network_cppsnippets | ||
SUBDIRS = | ||
|
||
# ![0] | ||
QT += network | ||
# ![0] | ||
|
||
SOURCES += network/tcpwait.cpp | ||
contains(QT_BUILD_PARTS, tests) { | ||
SUBDIRS += \ | ||
network | ||
} | ||
|
||
load(qt_common) |