-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[poco] RFC: Add features to POCO to allow reducing build time #43337
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
"dependencies": [ | ||
"expat", | ||
"pcre2", | ||
"sqlite3", | ||
"utf8proc", | ||
{ | ||
"name": "vcpkg-cmake", | ||
|
@@ -21,7 +20,20 @@ | |
}, | ||
"zlib" | ||
], | ||
"default-features": [ | ||
"activerecord", | ||
"cppparser", | ||
"mongodb", | ||
"pocodoc", | ||
"sqlite3" | ||
], | ||
"features": { | ||
"activerecord": { | ||
"description": "ActiveRecord support for POCO" | ||
}, | ||
Comment on lines
+31
to
+33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Q:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'll need to define if we want POCO handles this internally by force-setting the |
||
"cppparser": { | ||
"description": "C++ parser support for POCO" | ||
}, | ||
"crypto": { | ||
"description": "Crypto support", | ||
"dependencies": [ | ||
|
@@ -34,6 +46,9 @@ | |
"libmariadb" | ||
] | ||
}, | ||
"mongodb": { | ||
"description": "MongoDB support for POCO" | ||
}, | ||
"mysql": { | ||
"description": "Mysql support for POCO", | ||
"dependencies": [ | ||
|
@@ -61,11 +76,20 @@ | |
"libharu" | ||
] | ||
}, | ||
"pocodoc": { | ||
"description": "PocoDoc tool support" | ||
}, | ||
"postgresql": { | ||
"description": "PostgreSQL support for POCO", | ||
"dependencies": [ | ||
"libpqxx" | ||
] | ||
}, | ||
"sqlite3": { | ||
"description": "sqlite3 support for POCO", | ||
"dependencies": [ | ||
"sqlite3" | ||
] | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it should go to
vcpkg_check_features
instead, as