-
Notifications
You must be signed in to change notification settings - Fork 0
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
CI #5
Merged
Merged
CI #5
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fuck ubuntu, even here it is has packages that are too old. Qt is 6.2.4 and it misses "qt_standard_project_setup" which I used.
Debian has boost 1.67, which is fine for the most stuff used in the library, but mp11 and describe are header-only and need to be the latest version.
boost library in debian stable still uses ~std::unary_function~ which was removed in cxx 17 and LLVM stdlib I'm using does not work properly with it.
a89ca1d
to
9dc0b48
Compare
Both reflection library and main project depend on the abseil and protobuf, but with `add_subdirectory` they were compiled twice. Moving them into external project would allow the build to be done only once.
abseil google library cannot be used with ~ExternalProject_Add~ (it does not compile high-level interface libraries into something that can be included by the parent project). Not possible to create proxy interface library because default behavior for the static library builds is to drop all the symbols. ~--whole-archive~ solution does not work with the abseil (for reasons unknown), so there were no other options for creating a proxy static library. abseil documentation says you either need to use it as a subdirectory or install separately. Because ~ExternalProject_Add~ installation is done at the build time, helper cmake files that abseil defines cannot be used in the main project, meaning abseil can only be installed /completely/ separately. Because in-source build of google test, protobuf and google mock requires an in-source abseil as well this whole thing becomes completely unusable.
This reverts commit de7f752.
Compared to Doxygen, sphinx is a clunky unintuitive abomination that I could not get working after spending the whole day, reading documentation and consulting GPT for just about everything. Doxygen just works out of the box.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.