From ff7c23394b85054789e7411e7d8e3c7e481cacc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Schr=C3=B6dter?= <tobias.schroedter@rwth-aachen.de> Date: Wed, 27 Mar 2019 11:19:20 +0100 Subject: [PATCH] Updated gitignore to work with C++, CMake, CLion, and Emacs. For further options please check gitignore.io --- .gitignore | 189 +++++++++++++++++++++++++++++++++++++++- forms/icons.qrc.depends | 11 +++ 2 files changed, 198 insertions(+), 2 deletions(-) create mode 100644 forms/icons.qrc.depends diff --git a/.gitignore b/.gitignore index 4e9c87a..9f5d0fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,187 @@ -build/ -bin/ \ No newline at end of file + +# Created by https://www.gitignore.io/api/c++,clion,emacs,cmake +# Edit at https://www.gitignore.io/?templates=c++,clion,emacs,cmake + +### C++ ### +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +### CLion ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/modules.xml +# .idea/*.iml +# .idea/modules + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### CLion Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +.idea/sonarlint + +### CMake ### +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +Testing +Makefile +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps + +### CMake Patch ### +# External projects +*-prefix/ + +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +# End of https://www.gitignore.io/api/c++,clion,emacs,cmake +.idea/* \ No newline at end of file diff --git a/forms/icons.qrc.depends b/forms/icons.qrc.depends new file mode 100644 index 0000000..fb0945a --- /dev/null +++ b/forms/icons.qrc.depends @@ -0,0 +1,11 @@ +<RCC> + <qresource prefix="/new/iconsS" lang="english" > + <file>icons/fullscreen.PNG</file> + <file>icons/window_fullscreen-64.png</file> + <file>icons/Play1Hot.png</file> + <file>icons/Stop1PressedBlue.png</file> + <file>icons/JPSvis.png</file> + <file>icons/PauseHot.png</file> + <file>icons/RecordPressed.png</file> + </qresource> +</RCC> -- GitLab