From 5e351b7783e5ad135b6918b5f5d92d78723a4a04 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 29 Apr 2022 17:44:19 +0200 Subject: Add client socket support for 'html-cast' functionality to thin client. --- ctor.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ctor.cc') diff --git a/ctor.cc b/ctor.cc index 058506f..fa30fdc 100644 --- a/ctor.cc +++ b/ctor.cc @@ -18,6 +18,8 @@ BuildConfigurations myConfigs() "src/moc_mainwindow.cc", "src/viewer.cc", "src/moc_viewer.cc", + "src/client.cc", + "src/moc_client.cc", }, .flags = { .cxxflags = { @@ -25,12 +27,14 @@ BuildConfigurations myConfigs() "-I/usr/include/qt5/QtCore", "-I/usr/include/qt5/QtGui", "-I/usr/include/qt5/QtWidgets", + "-I/usr/include/qt5/QtNetwork", "-fPIC", "-Wall", "-Werror", "-Wextra",// "-Wconversion", "-g", }, .ldflags = { "-lQt5Core", + "-lQt5Network", "-lQt5Gui", "-lQt5Widgets", "-lsqlite3", -- cgit v1.2.3