summaryrefslogtreecommitdiffstats
path: root/LogReceiver
diff options
context:
space:
mode:
Diffstat (limited to 'LogReceiver')
-rw-r--r--LogReceiver/CMakeLists.txt12
-rw-r--r--LogReceiver/ndgui.h12
2 files changed, 13 insertions, 11 deletions
diff --git a/LogReceiver/CMakeLists.txt b/LogReceiver/CMakeLists.txt
index f5da228..6b3aedc 100644
--- a/LogReceiver/CMakeLists.txt
+++ b/LogReceiver/CMakeLists.txt
@@ -17,14 +17,14 @@ set(QT_USE_QTGUI TRUE)
set(QT_USE_QTNETWORK TRUE)
set(QT_USE_QTWEBKIT TRUE)
-file(GLOB_RECURSE LOGRECEIVER_SOURCES ./*.cpp)
-file(GLOB_RECURSE LOGRECEIVER_MOC_HEADERS ./*.h)
-file(GLOB_RECURSE LOGRECEIVER_UIS ./*.ui)
-file(GLOB_RECURSE LOGRECEIVER_RCS ./*.qrc)
+file(GLOB LOGRECEIVER_SOURCES ./*.cpp)
+file(GLOB LOGRECEIVER_MOC_HEADERS ./*.h)
+file(GLOB LOGRECEIVER_UIS ./*.ui)
+file(GLOB LOGRECEIVER_RCS ./*.qrc)
include_directories(${CMAKE_CURRENT_BINARY_DIR}
/usr/include/
- ../customdhcpcd/src/
+ ./../customdhcpcd/src/
./build
${QT_INCLUDES}
)
@@ -54,4 +54,4 @@ add_executable(LogReceiver
target_link_libraries(LogReceiver
${QT_LIBRARIES}
- sysfs libcustomdhcpcd)
+ sysfs customdhcpcd)
diff --git a/LogReceiver/ndgui.h b/LogReceiver/ndgui.h
index cca603d..81ab266 100644
--- a/LogReceiver/ndgui.h
+++ b/LogReceiver/ndgui.h
@@ -2,15 +2,17 @@
#define NDGUI_H
#include <QtGui/QWidget>
-#include "qprogressbar.h"
-#include "qlabel.h"
-#include "qgroupbox.h"
-#include "qboxlayout.h"
-#include "ui_ndgui.h"
+#include <QProgressBar>
+#include <QLabel>
+#include <QGroupBox>
+#include <QBoxLayout>
+
#include "logreceiver.h"
#include "chooseinterfacedialog.h"
#include "abortbootdialog.h"
+#include "ui_ndgui.h"
+
class ndgui: public QWidget {
Q_OBJECT