You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The gif_engine example project has such support code:
Add headers to targets so they show up in solution view (ref)
Use source_group to make solution view not flatten the files (ref)
Add startup target, so by default people can debug right away conveniently (ref)
The folders.cmake is already IDE specific support code. The example project uses the target_sources_grouped command to combine target_sources and source_group, so files don't have to be mentioned twice or added to a list, which makes use more declarative. This is a command would have to be used on the main code path as well, which could make reading the project CML more difficult.
The text was updated successfully, but these errors were encountered:
The gif_engine example project has such support code:
source_group
to make solution view not flatten the files (ref)The
folders.cmake
is already IDE specific support code. The example project uses thetarget_sources_grouped
command to combinetarget_sources
andsource_group
, so files don't have to be mentioned twice or added to a list, which makes use more declarative. This is a command would have to be used on the main code path as well, which could make reading the project CML more difficult.The text was updated successfully, but these errors were encountered: