-
Notifications
You must be signed in to change notification settings - Fork 17
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
Added Dependency Management for ReaderWriterQueue and Pistache #43
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -64,3 +64,30 @@ if(${RFAAS_WITH_TESTING}) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FetchContent_MakeAvailable(googletest) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
endif() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# readerwriterqueue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
find_package(readerwriterqueue QUIET) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if(NOT readerwriterqueue_FOUND) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message(STATUS "Downloading and building readerwriterqueue dependency") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FetchContent_Declare( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
readerwriterqueue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
GIT_REPOSITORY https://github.com/cameron314/readerwriterqueue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
GIT_TAG v1.0.6 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FetchContent_MakeAvailable(readerwriterqueue) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
endif() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# pistache | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
find_package(libpistache 0.0.5 EXACT QUIET) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if(NOT libpistache_FOUND) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
message(STATUS "Downloading and building libpistache dependency") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FetchContent_Declare( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
libpistache | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
GIT_REPOSITORY https://github.com/pistacheio/pistache | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
GIT_TAG 0.0.5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FetchContent_MakeAvailable(libpistache) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
endif() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+81
to
+93
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. 🛠️ Refactor suggestion Add CMAKE_ARGS to disable unnecessary Pistache features. While using a pinned version that matches Debian 12 stable is good, we should also disable unnecessary Pistache features to minimize build time and dependencies. Add these build options: FetchContent_Declare(
libpistache
GIT_REPOSITORY https://github.com/pistacheio/pistache
GIT_TAG 0.0.5
+ CMAKE_ARGS
+ -DPISTACHE_BUILD_TESTS=OFF
+ -DPISTACHE_BUILD_EXAMPLES=OFF
+ -DPISTACHE_BUILD_DOCS=OFF
) 📝 Committable suggestion
Suggested change
|
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.
💡 Codebase verification
Missing required dependencies for Pistache
The current configuration is incomplete. Based on Pistache's requirements, the following changes are needed:
find_package(OpenSSL REQUIRED COMPONENTS SSL Crypto)
target_link_libraries
to include required dependencies:🔗 Analysis chain
Verify Pistache dependencies are properly linked.
The switch to static linking is good, but we should verify that all required Pistache dependencies are properly linked.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 330
Script:
Length of output: 679