mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
VST3 Client: Generate moduleinfo.json into Resources directory of bundle
This commit is contained in:
parent
06a2089872
commit
77458fb4f9
10 changed files with 162 additions and 152 deletions
|
|
@ -21,4 +21,16 @@
|
|||
#
|
||||
# ==============================================================================
|
||||
|
||||
if(NOT EXISTS "${src}")
|
||||
message(STATUS "Unable to copy ${src} as it does not exist")
|
||||
return()
|
||||
endif()
|
||||
|
||||
get_filename_component(name "${src}" NAME)
|
||||
|
||||
if(EXISTS "${dest}/${name}")
|
||||
message(STATUS "Destination ${dest}/${name} exists, overwriting")
|
||||
file(REMOVE_RECURSE "${dest}/${name}")
|
||||
endif()
|
||||
|
||||
file(INSTALL ${src} DESTINATION ${dest} USE_SOURCE_PERMISSIONS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue