├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── .name ├── Viator-Juce-CMake.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── modules └── external │ └── CMakeLists.txt ├── source ├── .DS_Store ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp └── PluginProcessor.h └── tests ├── .DS_Store ├── .idea ├── modules.xml ├── tests.iml ├── vcs.xml └── workspace.xml ├── CMakeLists.txt ├── tests.cpp └── tests.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ViatorJuceCMake -------------------------------------------------------------------------------- /.idea/Viator-Juce-CMake.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.idea/Viator-Juce-CMake.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/README.md -------------------------------------------------------------------------------- /modules/external/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(CMAKE_CXX_STANDARD 17) 2 | add_subdirectory(googletest) 3 | -------------------------------------------------------------------------------- /source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/source/.DS_Store -------------------------------------------------------------------------------- /source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/source/PluginEditor.cpp -------------------------------------------------------------------------------- /source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/source/PluginEditor.h -------------------------------------------------------------------------------- /source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/source/PluginProcessor.cpp -------------------------------------------------------------------------------- /source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/source/PluginProcessor.h -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/tests/.idea/modules.xml -------------------------------------------------------------------------------- /tests/.idea/tests.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/tests/.idea/tests.iml -------------------------------------------------------------------------------- /tests/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/tests/.idea/vcs.xml -------------------------------------------------------------------------------- /tests/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/tests/.idea/workspace.xml -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/tests/tests.cpp -------------------------------------------------------------------------------- /tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landonviator/Viator-Juce-CMake/HEAD/tests/tests.h --------------------------------------------------------------------------------