├── .clang-format ├── .clang-tidy ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── README.md ├── assets └── juce-logo.svg ├── juce_cmake_vscode_example.code-workspace └── src ├── CMakeLists.txt ├── EditableComponent.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp └── PluginProcessor.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .cache -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/README.md -------------------------------------------------------------------------------- /assets/juce-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/assets/juce-logo.svg -------------------------------------------------------------------------------- /juce_cmake_vscode_example.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/juce_cmake_vscode_example.code-workspace -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/EditableComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/src/EditableComponent.h -------------------------------------------------------------------------------- /src/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/src/PluginEditor.cpp -------------------------------------------------------------------------------- /src/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/src/PluginEditor.h -------------------------------------------------------------------------------- /src/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/src/PluginProcessor.cpp -------------------------------------------------------------------------------- /src/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyanonymous/juce_cmake_vscode_example/HEAD/src/PluginProcessor.h --------------------------------------------------------------------------------