Skip to content

Commit

Permalink
Add macos and x86 conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sainan committed Dec 9, 2023
1 parent e005c80 commit 72c894a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Sun/sun.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,18 @@ struct Project
{
val = SOUP_WINDOWS;
}
else if (condition == "macos")
{
val = SOUP_MACOS;
}
else if (condition == "linux")
{
val = SOUP_LINUX;
}
else if (condition == "x86")
{
val = SOUP_X86;
}
else if (condition == "true")
{
val = true;
Expand Down

0 comments on commit 72c894a

Please sign in to comment.