From 3e35a74950e46882bb9d6eb1f3e21a5bdabe3efb Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 14 Dec 2017 15:20:42 -0500 Subject: More work on the OSInterface framework (mostly networking-related) --- src-qt5/src-cpp/framework-OSInterface.pri | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src-qt5/src-cpp/framework-OSInterface.pri (limited to 'src-qt5/src-cpp/framework-OSInterface.pri') diff --git a/src-qt5/src-cpp/framework-OSInterface.pri b/src-qt5/src-cpp/framework-OSInterface.pri new file mode 100644 index 00000000..92fb8889 --- /dev/null +++ b/src-qt5/src-cpp/framework-OSInterface.pri @@ -0,0 +1,4 @@ +QT *= core network + +HEADERS *= framework-OSInterface.h +SOURCES *= framework-OSInterface_private.cpp -- cgit From 496a3cb583a2f5fb2da7c1808077c1fc5a9bfc28 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 15 Dec 2017 13:56:26 -0500 Subject: A bit more work on the networking side of the OSInterface. Also add a test project for running tests against particular frameworks. --- src-qt5/src-cpp/framework-OSInterface.pri | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src-qt5/src-cpp/framework-OSInterface.pri') diff --git a/src-qt5/src-cpp/framework-OSInterface.pri b/src-qt5/src-cpp/framework-OSInterface.pri index 92fb8889..be705e44 100644 --- a/src-qt5/src-cpp/framework-OSInterface.pri +++ b/src-qt5/src-cpp/framework-OSInterface.pri @@ -1,4 +1,9 @@ QT *= core network -HEADERS *= framework-OSInterface.h -SOURCES *= framework-OSInterface_private.cpp +HEADERS *= $${PWD}/framework-OSInterface.h +SOURCES *= $${PWD}/framework-OSInterface_private.cpp + +_os=template +SOURCES *= $${PWD}/framework-OSInterface-$${_os}.cpp + +INCLUDEPATH *= $${PWD} -- cgit