-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge main/daemon/client binaries into single one
Instead of shipping 3 distinct binaries: csshw.exe, csshw-client.exe and csshw-daemon.exe, csshw.exe now has client and daemon subcommands. The separate daemon taskbar icon will have to be re-introduced with a follow up change.
- Loading branch information
Showing
7 changed files
with
90 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
extern crate embed_resource; | ||
|
||
fn main() { | ||
embed_resource::compile_for( | ||
"res/csshw.rc", | ||
["csshw", "csshw-client"], | ||
embed_resource::NONE, | ||
); | ||
embed_resource::compile_for( | ||
"res/csshw_daemon.rc", | ||
["csshw-daemon"], | ||
embed_resource::NONE, | ||
); | ||
embed_resource::compile_for("res/csshw.rc", ["csshw"], embed_resource::NONE); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters