aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--confui/.gitignore (renamed from QtClient/.gitignore)0
-rw-r--r--confui/QtClient.pro (renamed from QtClient/QtClient.pro)0
-rw-r--r--confui/main.c7
-rw-r--r--confui/main.cpp (renamed from QtClient/main.cpp)0
-rw-r--r--confui/mainwindow.cpp (renamed from QtClient/mainwindow.cpp)0
-rw-r--r--confui/mainwindow.h (renamed from QtClient/mainwindow.h)0
-rw-r--r--confui/mainwindow.ui (renamed from QtClient/mainwindow.ui)0
-rw-r--r--confui/makefile24
8 files changed, 0 insertions, 31 deletions
diff --git a/QtClient/.gitignore b/confui/.gitignore
index fab7372..fab7372 100644
--- a/QtClient/.gitignore
+++ b/confui/.gitignore
diff --git a/QtClient/QtClient.pro b/confui/QtClient.pro
index b915c09..b915c09 100644
--- a/QtClient/QtClient.pro
+++ b/confui/QtClient.pro
diff --git a/confui/main.c b/confui/main.c
deleted file mode 100644
index 1be969b..0000000
--- a/confui/main.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <stdio.h>
-
-int main() {
- printf("hello world!\n");
-
- return 0;
-}
diff --git a/QtClient/main.cpp b/confui/main.cpp
index fd3e533..fd3e533 100644
--- a/QtClient/main.cpp
+++ b/confui/main.cpp
diff --git a/QtClient/mainwindow.cpp b/confui/mainwindow.cpp
index 41a26bd..41a26bd 100644
--- a/QtClient/mainwindow.cpp
+++ b/confui/mainwindow.cpp
diff --git a/QtClient/mainwindow.h b/confui/mainwindow.h
index 57eb614..57eb614 100644
--- a/QtClient/mainwindow.h
+++ b/confui/mainwindow.h
diff --git a/QtClient/mainwindow.ui b/confui/mainwindow.ui
index b232854..b232854 100644
--- a/QtClient/mainwindow.ui
+++ b/confui/mainwindow.ui
diff --git a/confui/makefile b/confui/makefile
deleted file mode 100644
index 78301cb..0000000
--- a/confui/makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-CC = gcc
-LD = gcc
-RM = rm -f
-CFLAGS =
-LFLAGS =
-TARGET = confui
-
-SRCS := $(wildcard *.c)
-OBJS := $(patsubst %.c,%.o, $(SRCS))
-
-all: $(TARGET)
-
-%.o: %.c
- $(CC) -c $(CFLAGS) $< -o $@
-
-$(TARGET): $(OBJS)
- $(LD) $^ $(LFLAGS) -o $@
-
-clean:
- $(RM) $(TARGET) $(OBJS)
-
-compile_commands: clean
- compiledb make
-