Merge pull request #145 from build-cpp/system-bug

Fix uninitialized 'system' field for fetch-content
main
Duncan Ogilvie 3 months ago committed by GitHub
commit 3a9685be82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -155,7 +155,7 @@ struct Content {
Condition<std::string> cmake_after; Condition<std::string> cmake_after;
ConditionVector include_before; ConditionVector include_before;
ConditionVector include_after; ConditionVector include_after;
bool system; bool system = false;
std::string subdir; std::string subdir;
}; };

Loading…
Cancel
Save