-
Notifications
You must be signed in to change notification settings - Fork 11
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
Workspaces #101
Draft
TheRustifyer
wants to merge
72
commits into
main
Choose a base branch
from
workspaces
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Workspaces #101
+281
−117
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
… executor, which was taking the path of the executable instead of the path of the tests executable
…ystems are reporting the same error, conflicting the Clang modules cache with ours
…the project model
…te the compilation database
…the configuration file is parsed
…ributes included for designing the entry point of the program
… checked before process them.
…aper to copy than pass it by reference (size = 1, align = 1)
…as obj files, and not as .ifc files, in order to save the commands for the compiler
…neration of the cache/database compilation
…h user module interfaces
…mplementations and non module source files
…mplementations and non module source files
… it's running Tests of the Executable target
…ince the beginning
…ines in cache results
…mmand line for any source, and also for the linker command. ExecutionResult is now Copy, so we could delete unnecessary clones
…ve to adapt our current workflow to be able to fully implement the workspaces features, but at least, now we have all the deserialization job done
Closed
Loading status checks…
… on the Zork++ cwd
Loading status checks…
Loading status checks…
…ts version is > 17
Loading status checks…
Loading status checks…
…orking with C++ standard modules
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Description
This PR aims to provide the implementation of a long awaited feature within
Zork++
, which is workspaces.Workspace are the futuristic building blocks of our configuration workflows. They are similar to the
Cargo
workspaces features syntactically, and should provide the same functionality asCMake
add_subdirectory()
, bringing to our users the possibilite of achieve multimodular configurations for their projects, have submodules/subprojects...WARNING!
Since this is intented to be implemented between more than one devs at the same time, I pushed the job already made in my personal fork to a new branch named
workspaces
in the upstream repo, so we can work mostly at the same time in this exceptional case