Skip to content

Commit ee850e6

Browse files
committed
Fix threads config interdependency.
1 parent 81f8968 commit ee850e6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

source/configGenerator_build.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1162,6 +1162,10 @@ void ConfigGenerator::buildForcedEnables(const string& optionLower, vector<strin
11621162
fastToggleConfigValue("uwp", true); // must use fastToggle to prevent infinite cycle
11631163
} else if (optionLower == "uwp") {
11641164
fastToggleConfigValue("winrt", true);
1165+
} else if (optionLower == "threads") {
1166+
CHECKFORCEDENABLES("w32threads");
1167+
} else if (optionLower == "w32threads") {
1168+
CHECKFORCEDENABLES("threads");
11651169
}
11661170
}
11671171

0 commit comments

Comments
 (0)