Skip to content

Commit

Permalink
Merge pull request #259 from egorpugin/patch-1
Browse files Browse the repository at this point in the history
[sw] Fix build.
  • Loading branch information
dchapyshev authored Nov 15, 2023
2 parents 6c4b167 + 4ba310a commit a9aea4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/sw.cc
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void build(Solution &s) {
if (relay.getBuildSettings().TargetOS.Type == OSType::Windows) {
relay += "relay/win/.*"_rr;
} else {
relay -= "relay/service.cc";
//relay -= "relay/service.cc";
}
if (relay.getBuildSettings().TargetOS.Type == OSType::Linux) {
relay += "relay/linux/.*"_rr;
Expand All @@ -208,7 +208,7 @@ void build(Solution &s) {
if (router.getBuildSettings().TargetOS.Type == OSType::Windows) {
router += "router/win/.*"_rr;
} else {
router -= "router/service.cc";
//router -= "router/service.cc";
}
if (router.getBuildSettings().TargetOS.Type == OSType::Linux) {
router += "router/linux/.*"_rr;
Expand Down

0 comments on commit a9aea4b

Please sign in to comment.