Skip to content

Commit

Permalink
First version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmucde committed Mar 11, 2021
1 parent f5cc885 commit f516c18
Show file tree
Hide file tree
Showing 10 changed files with 870 additions and 24 deletions.
87 changes: 64 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,73 @@
# Prerequisites
*.d
# This file is used to ignore files which are generated
# ----------------------------------------------------------------------------

# Compiled Object files
*.slo
*.lo
*~
*.autosave
*.a
*.core
*.moc
*.o
*.obj
*.orig
*.rej
*.so
*.so.*
*_pch.h.cpp
*_resource.rc
*.qm
.#*
*.*#
core
!core/
tags
.DS_Store
.directory
*.debug
Makefile*
*.prl
*.app
moc_*.cpp
ui_*.h
qrc_*.cpp
Thumbs.db
*.res
*.rc
/.qmake.cache
/.qmake.stash

# Precompiled Headers
*.gch
*.pch
# qtcreator generated files
*.pro.user*

# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# xemacs temporary files
*.flc

# Fortran module files
*.mod
*.smod
# Vim temporary files
.*.swp

# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Visual Studio generated files
*.ib_pdb_index
*.idb
*.ilk
*.pdb
*.sln
*.suo
*.vcproj
*vcproj.*.*.user
*.ncb
*.sdf
*.opensdf
*.vcxproj
*vcxproj.*

# Executables
# MinGW generated files
*.Debug
*.Release

# Python byte code
*.pyc

# Binaries
# --------
*.dll
*.exe
*.out
*.app

29 changes: 29 additions & 0 deletions DLTRelais.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
QT += core gui serialport network

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

CONFIG += c++11

# 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 += \
main.cpp \
dialog.cpp \
settings.cpp

HEADERS += \
dialog.h \
settings.h

FORMS += \
dialog.ui

TRANSLATIONS += \
DLTMultimeter_en_DE.ts

# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
3 changes: 3 additions & 0 deletions DLTRelais_en_DE.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="DLTMultimeter_en_DE"></TS>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# DLTRelais
# DLTMultimeter
Loading

0 comments on commit f516c18

Please sign in to comment.