-
Notifications
You must be signed in to change notification settings - Fork 205
Combine the tiledb_shared and tiledb_static CMake targets.
#4528
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
fb8139e
Remove `TILEDB_STATIC` and unify `tiledb_static` and `tiledb_shared`.
teo-tsirpanis 35732e8
Add bootstrap script options to set `BUILD_SHARED_LIBS`.
teo-tsirpanis e04fd2d
Update the release script to build shared libraries.
teo-tsirpanis 7b90b53
Add `TileDB::tiledb_static` and `TileDB::tiledb_shared` exported alia…
teo-tsirpanis 841ae32
Compile the Win32 resources only when we build a shared library.
teo-tsirpanis 05fe01c
Update CI workflows.
teo-tsirpanis ea075ab
Update comments.
teo-tsirpanis b332b87
Rename mentions of `TILEDB_CORE_OBJECTS_EXPORTS` to `tiledb_EXPORTS`.
teo-tsirpanis 371f41c
Don't create a context in global scope in `quickstart_dense.cc`.
teo-tsirpanis 908f4b2
Don't define the alias targets if they are already defined.
teo-tsirpanis 4c91a24
List the files in build directory on failure.
teo-tsirpanis 4a0ea34
Build, run and delete each example individually.
teo-tsirpanis 1519711
Do not source `run-nix-examples.sh`.
teo-tsirpanis 63ca096
Fix linker errors when building the benchmarks.
teo-tsirpanis 1bbd6cc
Fix building the examples.
teo-tsirpanis 6b4fcdd
Delete seemingly useless code.
teo-tsirpanis 6663f3c
Fix name clashes with syscalls.
teo-tsirpanis a7eb4b7
Merge branch 'dev' into oriskany
teo-tsirpanis 782a955
Address most PR feedback.
teo-tsirpanis 94112e5
Fix outdated bootstrap script documentation.
teo-tsirpanis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
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.
Just as in the bootstrap scripts, this would be better as a "static" or "shared" rather than boolean.
See https://stackoverflow.com/questions/8709877/cmake-string-options for how to do this.
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.
BUILD_SHARED_LIBSis a standard CMake variable. I don't think it's a good idea to specify linkage in a different way.Uh oh!
There was an error while loading. Please reload this page.
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.
OK.