Skip to content

Commit

Permalink
Moved external libraries into Libs folder
Browse files Browse the repository at this point in the history
  • Loading branch information
cvde committed Jun 27, 2022
1 parent 3e4f83e commit 3624125
Show file tree
Hide file tree
Showing 48 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "JUCE"]
path = JUCE
path = Libs/JUCE
url = https://github.com/juce-framework/JUCE.git
[submodule "clap-juce-extensions"]
path = clap-juce-extensions
path = Libs/clap-juce-extensions
url = https://github.com/free-audio/clap-juce-extensions.git
14 changes: 7 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ if(UNIX AND NOT APPLE)
endif ()

# include JUCE
add_subdirectory(JUCE)
add_subdirectory(Libs/JUCE)

# include clap extension to build plugin in clap format
add_subdirectory(clap-juce-extensions EXCLUDE_FROM_ALL)
add_subdirectory(Libs/clap-juce-extensions EXCLUDE_FROM_ALL)

juce_add_plugin(${PROJECT_NAME}
PLUGIN_NAME "Room Reverb"
Expand Down Expand Up @@ -63,15 +63,15 @@ add_subdirectory(Assets)
# include Source folder
add_subdirectory(Source)

# include Freeverb3 folder and add as include folders
add_subdirectory(Freeverb3)
# include Freeverb3 folder and add as include folder
add_subdirectory(Libs/Freeverb3)
target_include_directories(${PROJECT_NAME}
PRIVATE
"Freeverb3/"
"Freeverb3/fftw/"
"Libs/Freeverb3/"
"Libs/Freeverb3/fftw/"
)

# adds some preprocessor definitions
# adds some preprocessor definitions for JUCE and freeverb
target_compile_definitions(${PROJECT_NAME}
PUBLIC
JUCE_DISPLAY_SPLASH_SCREEN=0
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Submodule JUCE updated from 000000 to 2b16c1

0 comments on commit 3624125

Please sign in to comment.