cmake: Add obs_modules to MacOS build dependencies#12382
Closed
Trouffman wants to merge 1 commit into
Closed
Conversation
Member
|
The dependencies (including modules) are already added via get_property(obs_dependencies GLOBAL PROPERTY _OBS_DEPENDENCIES)
add_dependencies(${target} ${obs_dependencies})so adding them again via The actual issue here is not the Compare: OBS Studio 30.0.4:OBS Studio 30.1.1:The frontend project is not skipped and that's the root cause. |
Member
|
@Trouffman The required fix is to change the plugin template and use |
6 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 fix an error when building a plugin using OBS 31.1.1 as base. (in plugin's buildspec.json)
This change add the variable obs_modules to the dependencies for building on macos.
It also makes it consistent with how Windows & linux are built. (could have been missed)
Motivation and Context
Solves Issue : #12381
Align all 3 OS on the same behaviour / build requirement (at least for that part)
Allow to build plugin based on OBS 31.1 (and start adding support/test for WoA support too)
How Has This Been Tested?
Result of the github action on the DistroAV project (using this fix + obs-deps from 2025-07-11)
Types of changes
Checklist: