9 lines
207 B
CMake
9 lines
207 B
CMake
if(NOT TARGET JUCE::JUCE)
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
JUCE
|
|
GIT_REPOSITORY https://github.com/juce-framework/JUCE.git
|
|
GIT_TAG 7.0.8)
|
|
FetchContent_MakeAvailable(JUCE)
|
|
endif()
|