remymuller / juce-cmake

CMake find module for the JUCE library
MIT License
30 stars 7 forks source link

Show JUCE sources in IDE #17

Closed johanneskares closed 4 years ago

johanneskares commented 4 years ago

This enables to browse and show the JUCE source code in the IDE project. Tested with XCode 11.3 und Visual Studio 2019.

Would be great if this could be merged, so I don't have to maintain my fork.

remymuller commented 4 years ago

Thanks for the PR, unfortunately it doesn't play well with existing projects we have where we are already using stuff like

source_group(TREE "${PROJECT_SOURCE_DIR}" FILES ${SOURCES})

It generates fake folders ".." in the IDE ../../../

I'll see how I can adapt your suggestion.

remymuller commented 4 years ago

Please pull the latest tip and let me know if it fits well with your projects.

johanneskares commented 4 years ago

perfect, works great. Thanks for adding this in!