diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-11-30 13:44:59 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-11-30 13:44:59 +0100 |
commit | 390726a83913552e63d4499d216ea6f370d6adad (patch) | |
tree | eabfb4cb6d2057c6160d687f2aaede5f24f15692 | |
parent | 0daf8c516e48551098cc53f3f88cb52e9a47df35 (diff) |
-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.c | 7 | ||||
-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/makefile | 24 |
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 - |