-
-
Notifications
You must be signed in to change notification settings - Fork 7
steam build fixes #114
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
steam build fixes #114
Conversation
Also ensure that mingw builds use static linking
WalkthroughThe changes update the CMake configuration to dynamically set the package component based on the build type (using "Beta" for Debug builds and "Release" otherwise) and adjust installation targets accordingly. Additionally, the installation commands are refined by modifying asset and data directory installs. In the toolchain files for MinGW-w64 (both i686 and x86_64), new static linker flags are added to ensure executables and shared libraries are linked statically. Changes
Sequence Diagram(s)sequenceDiagram
participant Build as Build System
participant CMake as CMake Configuration
participant Installer as Install Process
Build->>CMake: Initiate build
CMake->>CMake: Check build type (Debug or other)
alt Debug Build
CMake->>CMake: Set PACKAGE_COMPONENT = "Beta"
else Other Build
CMake->>CMake: Set PACKAGE_COMPONENT = "Release"
end
CMake->>Installer: Configure installation targets using PACKAGE_COMPONENT
Installer-->>CMake: Confirm installation configuration
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
⏰ Context from checks skipped due to timeout of 90000ms (8)
🔇 Additional comments (8)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Summary by CodeRabbit
New Features
Chores