Skip to content

Commit efe5297

Browse files
committed
First injection
1 parent 6292077 commit efe5297

4,601 files changed

Lines changed: 1022431 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# === CMake build folders ===
2+
build/
3+
CMakeFiles/
4+
CMakeCache.txt
5+
cmake_install.cmake
6+
Makefile
7+
8+
# === Submodules folders ===
9+
externals/
10+
11+
# === inno setup generated binary folder ===
12+
installer/
13+
14+
# === JUCE artefacts ===
15+
*_artefacts/
16+
*.jucer
17+
*.sln
18+
*.vcxproj*
19+
*.xcodeproj
20+
*.xcworkspace
21+
*.idea/
22+
*.vscode/
23+
24+
# === Compiled binaries ===
25+
*.exe
26+
*.dll
27+
*.dylib
28+
*.so
29+
*.a
30+
*.lib
31+
*.app
32+
*.o
33+
*.obj
34+
35+
# === Plugin formats ===
36+
*.vst3/
37+
*.component/
38+
*.lv2/
39+
*.vst/
40+
41+
# === JUCE auto-generated files ===
42+
juce_*_AppConfig.h
43+
juce_*_BinaryData.*
44+
juce_*_Main.cpp
45+
46+
# === OS-specific ===
47+
.DS_Store
48+
Thumbs.db
49+
50+
# === Logs and temporary files ===
51+
*.log
52+
*.tmp
53+
*.bak
54+
*.swp
55+
generation_log.txt
56+
57+
# === User-specific configs ===
58+
*.user
59+
*.sublime-workspace
60+
*.sublime-project
61+
62+
# === Python or scripting artifacts ===
63+
__pycache__/
64+
*.pyc
65+
66+
# === Patch or preset folders (if generated) ===
67+
patches/generated/
68+

.gitmodules

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[submodule "externals/JUCE"]
2+
path = externals/JUCE
3+
url = https://github.com/juce-framework/JUCE.git
4+
branch = master
5+
[submodule "externals/VST3_SDK"]
6+
path = externals/VST3_SDK
7+
url = https://github.com/steinbergmedia/vst3sdk.git
8+
branch = master
9+
[submodule "externals/xsimd"]
10+
path = externals/xsimd
11+
url = https://github.com/xtensor-stack/xsimd
12+
branch = master

0 commit comments

Comments
 (0)