Separate vendor projects from solution #360
-
| Hey there, first of all thanks for this awesome tool! When running the  What's the recommended way to separate those third-party projects from my solution ? CMakeLists.txt | 
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
| You can if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
  set_property(GLOBAL PROPERTY USE_FOLDERS ON)
endif()And then do something like: set_target_properties(absl_bad_optional_access PROPERTIES FOLDER "Dependencies")for each dependencies. And maybe have a look if you can contribute for them to add such option in related project, I don't know if absl have for example a  | 
Beta Was this translation helpful? Give feedback.
You can
And then do something like:
for each dependencies.
And maybe have a look if you can contribute for them to add such option in related project, I don't know if absl have for example a
ABSL_TARGET_FOLDERor something like that.