v1.01: addall

This commit is contained in:
Your Name
2024-06-09 02:15:55 +02:00
parent e55aea0770
commit 06ae2481df
1147 changed files with 1225 additions and 0 deletions

29
MiniLLavaChat.pro Normal file
View File

@@ -0,0 +1,29 @@
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
src/main.cpp \
src/mainwindow.cpp \
src/restapiclient.cpp
HEADERS += \
src/mainwindow.h \
src/restapiclient.h
FORMS += \
src/mainwindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
# Application Icon
win32:RC_ICONS += icons/appicon.ico

40
MiniLLavaChat_resource.rc Normal file
View File

@@ -0,0 +1,40 @@
#include <windows.h>
IDI_ICON1 ICON "C:\\Users\\Markus\\Nextcloud\\CPP-Projekte\\MiniLLavaChat\\icons\\appicon.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,0,0,0
PRODUCTVERSION 0,0,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "\0"
VALUE "FileVersion", "0.0.0.0\0"
VALUE "LegalCopyright", "\0"
VALUE "OriginalFilename", "MiniLLavaChat.exe\0"
VALUE "ProductName", "MiniLLavaChat\0"
VALUE "ProductVersion", "0.0.0.0\0"
VALUE "InternalName", "\0"
VALUE "Comments", "\0"
VALUE "LegalTrademarks", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0409, 1200
END
END
/* End of Version info */

Some files were not shown because too many files have changed in this diff Show More