-
Notifications
You must be signed in to change notification settings - Fork 256
glaze: add v5.5.2 #2250
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
base: master
Are you sure you want to change the base?
glaze: add v5.5.2 #2250
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[wrap-file] | ||
directory = glaze-5.5.2 | ||
source_url = https://github.com/stephenberry/glaze/archive/refs/tags/v5.5.2.tar.gz | ||
source_filename = glaze-5.5.2.tar.gz | ||
source_hash = 92382568999829a531db5a3800a36d8699674d640d3862fcb7e79ee2879d95ec | ||
patch_directory = glaze | ||
|
||
[provide] | ||
glaze = glaze_dep |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
project( | ||
'glaze', | ||
'cpp', | ||
license: 'MIT', | ||
version: '5.5.2', | ||
) | ||
|
||
glaze_dep = declare_dependency( | ||
include_directories: include_directories('include'), | ||
compile_args: '-std=c++23', | ||
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. This is most definitely not allowed. It is both compiler specific and clashes with the builtin standard version option. 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. meson does not support c++23 when specifying a default version, and glaze will not build unless it is on c++23. also, not to mention all standard compilers (llvm, gcc, msvc, etc.) support this flag and the way it's formatted 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. He's saying having it a part of glaze_dep |
||
) |
Uh oh!
There was an error while loading. Please reload this page.