Skip to content
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

bgfx: add new version and consolidated recipe #24423

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix cppstd for AutotoolsToolchain
RazielXYZ committed Jun 23, 2024
commit c6715c1878f447ce32ffe301dcf5bf6a5fb19571
2 changes: 1 addition & 1 deletion recipes/bgfx/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -162,7 +162,7 @@ def generate(self):
else:
tc = AutotoolsToolchain(self)
if not self.settings.get_safe("compiler.cppstd"):
tc.cppstd = "c++17"
tc.cppstd = "-std=c++17"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@AbrilRBS What's the fate of this following the closure of #16533 ?

tc.generate()

def build(self):