Skip to content

Commit

Permalink
More boost components for USVFS.
Browse files Browse the repository at this point in the history
  • Loading branch information
Holt59 committed Jun 9, 2024
1 parent a3a3312 commit 77bd210
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tasks/boost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,9 @@ namespace mob::tasks {
// static link, static runtime, x64
do_b2(components, "static", "static", arch::x64);

// static link, static runtime, x86, required by usvfs 32-bit
// static link, static/shared runtime, x86, required by usvfs 32-bit
do_b2(components, "static", "static", arch::x86);
do_b2(components, "static", "shared", arch::x86);

// static link, shared runtime, x64
do_b2(components, "static", "shared", arch::x64);
Expand Down

0 comments on commit 77bd210

Please sign in to comment.