Skip to content

Commit 9f9046c

Browse files
committed
initialize public repo
0 parents  commit 9f9046c

11 files changed

Lines changed: 664 additions & 0 deletions

File tree

.gitignore

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
# ======================
2+
# Build artifacts
3+
# ======================
4+
5+
# Object files
6+
*.o
7+
*.obj
8+
*.lo
9+
*.la
10+
*.lai
11+
*.al
12+
13+
# Precompiled headers
14+
*.gch
15+
*.pch
16+
17+
# Libraries
18+
*.lib
19+
*.a
20+
*.so
21+
*.dylib
22+
*.dll
23+
24+
# Executables
25+
# *.exe
26+
*.out
27+
*.app
28+
29+
# Debug files / symbols
30+
*.dSYM/
31+
*.pdb
32+
*.ilk
33+
*.idb
34+
35+
# ======================
36+
# Build directories
37+
# ======================
38+
# Common build output folders; adjust if you use a different folder name
39+
/build/
40+
/bin/
41+
/lib/
42+
/Debug/
43+
/Release/
44+
/x64/
45+
/x86/
46+
/cmake-build-*/
47+
48+
# ======================
49+
# CMake
50+
# ======================
51+
# Ignore CMake-generated files/directories
52+
CMakeFiles/
53+
CMakeCache.txt
54+
cmake_install.cmake
55+
CTestTestfile.cmake
56+
install_manifest.txt
57+
# If you generate compile_commands.json and want to keep it versioned, remove the next line; otherwise ignore:
58+
compile_commands.json
59+
60+
# ======================
61+
# Qt (if applicable)
62+
# ======================
63+
# Generated by Qt's moc, uic, rcc
64+
moc_*.cpp
65+
qrc_*.cpp
66+
ui_*.h
67+
68+
# ======================
69+
# IDE / Editor settings
70+
# ======================
71+
# Visual Studio
72+
*.sln
73+
*.vcxproj*
74+
*.vcproj*
75+
*.suo
76+
*.user
77+
*.userosscache
78+
*.VC.opendb
79+
*.VC.db
80+
81+
# Visual Studio Code
82+
.vscode/
83+
84+
# CLion / IntelliJ
85+
.idea/
86+
# If you want to keep certain project files, you can selectively ignore; above is the simplest.
87+
88+
# Sublime Text
89+
*.sublime-project
90+
*.sublime-workspace
91+
92+
# Code::Blocks
93+
*.layout
94+
*.depend
95+
96+
# Eclipse CDT
97+
.project
98+
.cproject
99+
.settings/
100+
101+
# ======================
102+
# OS-specific
103+
# ======================
104+
# macOS
105+
.DS_Store
106+
107+
# Windows
108+
Thumbs.db
109+
ehthumbs.db
110+
Desktop.ini
111+
112+
# Linux (swap/temp)
113+
*~
114+
115+
# ======================
116+
# Logs, temporary files
117+
# ======================
118+
*.log
119+
*.tmp
120+
*.temp
121+
122+
# ======================
123+
# Coverage & reports (if using coverage tools)
124+
# ======================
125+
coverage/
126+
*.gcda
127+
*.gcno
128+
*.gcov
129+
130+
# ======================
131+
# Packaging artifacts (e.g., if you package releases)
132+
# ======================
133+
*.tar.gz
134+
*.zip
135+
136+
# ======================
137+
# Miscellaneous
138+
# ======================
139+
# Backup files
140+
*.bak
141+
*.orig
142+
*.old
143+
144+
# Editor swap files
145+
*.swp
146+
*.swo
147+
148+
# Repo specific side Executables
149+
ReadTest.exe
150+
a.exe
151+
hello.exe
152+

AppSettings.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
scripts {
2+
"1 Script one": "scripts\\a.exe" # correct layout of working
3+
"2 Script two": "scripts\\hello.exe"
4+
"3 Script three": "yo" # not an actual file but still works
5+
}
6+

0 commit comments

Comments
 (0)