-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only the main lib is fully compatible. LibCecSharp is initialised differently now
- Loading branch information
Showing
11 changed files
with
224 additions
and
87 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Section "libCEC Tray" SecTray | ||
SetShellVarContext current | ||
SectionIn 1 | ||
|
||
; Copy to the installation directory | ||
SetOutPath "$INSTDIR\x86\netfx" | ||
File "..\build\x86\cec-tray.exe" | ||
SetOutPath "$INSTDIR\x64\netfx" | ||
File /nonfatal "..\build\amd64\cec-tray.exe" | ||
|
||
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application | ||
SetOutPath "$INSTDIR" | ||
|
||
CreateDirectory "$SMPROGRAMS\$StartMenuFolder" | ||
${If} ${RunningX64} | ||
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\cec-tray.lnk" "$INSTDIR\x64\netfx\cec-tray.exe" \ | ||
"" "$INSTDIR\x64\netfx\cec-tray.exe" 0 SW_SHOWNORMAL \ | ||
"" "Start libCEC Tray (x64)." | ||
${Else} | ||
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\cec-tray.lnk" "$INSTDIR\x86\netfx\cec-tray.exe" \ | ||
"" "$INSTDIR\netfx\cec-tray.exe" 0 SW_SHOWNORMAL \ | ||
"" "Start libCEC Tray." | ||
${EndIf} | ||
!insertmacro MUI_STARTMENU_WRITE_END | ||
SectionEnd |
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
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
Oops, something went wrong.