Juce_add_bundle_resources_directory question

Hey everyone! I have all my resources in the root of the project under /resources folder. I want to be able to add all these files to the app/Contents/Resources, when I specify in cmake

juce_add_bundle_resources_directory(${PROJECT_NAME}
    ${CMAKE_SOURCE_DIR}/Resources)

it just copies (as docs suggest) the entire dir to resources, so I end up having app/Contents/Resources/Resources

The way it was done in projucer before is every file under the resources was explicitly put in Custom Xcode Resource Folders (e.g. resources/icon.png, resources/readme.txt, etc.)
I tried to provide the same file names in the cmake and it doesn’t complain when building, but also ends up not putting anything under the resources, how can I solve this?

You can use a custom function for that, which will glob for images.

I have an example doing exactly that here:

(It’s called add_images_from_directory).

Sorry, I misread the original post. I thought you needed embedded binary resources - I’m not sure what the solution is for bundle resources.