Skip to content

Commit

Permalink
Forward --cbuild2cmake option when calling csolution convert
Browse files Browse the repository at this point in the history
  • Loading branch information
soumeh01 committed Jun 26, 2024
1 parent 340bafb commit 5713b19
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/builder/csolution/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ func (b CSolutionBuilder) generateBuildFiles() (err error) {
args = append(args, "--quiet")
}

if b.Options.UseCbuild2CMake {
args = append(args, "--cbuild2cmake")
}

_, err = b.runCSolution(args, !(b.Options.Debug || b.Options.Verbose))

// Execute this code exclusively upon invocation of the 'setup' command.
Expand Down

0 comments on commit 5713b19

Please sign in to comment.