Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
7a379a5a
Commit
7a379a5a
authored
1 year ago
by
Deucе
Browse files
Options
Downloads
Patches
Plain Diff
Add version info resource.
parent
18f8c75c
No related branches found
No related tags found
No related merge requests found
Pipeline
#5855
passed
1 year ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/syncterm/GNUmakefile
+8
-1
8 additions, 1 deletion
src/syncterm/GNUmakefile
src/syncterm/syncterm.rc
+35
-0
35 additions, 0 deletions
src/syncterm/syncterm.rc
with
43 additions
and
1 deletion
src/syncterm/GNUmakefile
+
8
−
1
View file @
7a379a5a
...
...
@@ -74,7 +74,8 @@ ifeq ($(os),win32)
OBJS
+=
$(
MTOBJODIR
)$(
DIRSEP
)
comio_win32
$(
OFILE
)
\
$(
MTOBJODIR
)$(
DIRSEP
)
modem
$(
OFILE
)
\
$(
MTOBJODIR
)$(
DIRSEP
)
comio
$(
OFILE
)
\
$(
MTOBJODIR
)$(
DIRSEP
)
ciolib_res
$(
OFILE
)
$(
MTOBJODIR
)$(
DIRSEP
)
ciolib_res
$(
OFILE
)
\
$(
MTOBJODIR
)$(
DIRSEP
)
syncterm_res
$(
OFILE
)
else
ifneq
($(os),haiku)
OBJS
+=
$(
MTOBJODIR
)$(
DIRSEP
)
comio_nix
$(
OFILE
)
\
...
...
@@ -200,3 +201,9 @@ syncterm-clean:
${
DELETE
}
changelog.gz
clean
:
syncterm-clean
ifeq
($(os),win32)
$(MTOBJODIR)$(DIRSEP)syncterm_res${OFILE}
:
syncterm.rc
@
echo
Creating
$<
...
$(
QUIET
)${
WINDRES
}
$(
WINDRESFLAGS
)
-O
coff
-i
syncterm.rc
-o
$@
endif
This diff is collapsed.
Click to expand it.
src/syncterm/syncterm.rc
0 → 100644
+
35
−
0
View file @
7a379a5a
#include "windows.h"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,2,0,0
PRODUCTVERSION 1,2,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef _DEBUG
//FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
#else
//FILEFLAGS VS_FF_PRERELEASE
#endif
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "04090000"
BEGIN
VALUE "CompanyName", "Stephen Hurd (Deuce)\0"
VALUE "FileDescription", "SyncTERM BBS Client\0"
VALUE "FileVersion", "1.2b\0"
VALUE "InternalName", "syncterm.exe\0"
VALUE "LegalCopyright", "Stephen Hurd (Deuce)\0"
VALUE "OriginalFilename", "syncterm.exe\0"
VALUE "ProductName", "SyncTERM\0"
VALUE "ProductVersion", "1.2b\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0409, 0
END
END
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment