Skip to content

Commit d1baeb8

Browse files
committed
Solve a problem of nmake build(use vs2017)
1 parent cfcf973 commit d1baeb8

File tree

6 files changed

+16
-78
lines changed

6 files changed

+16
-78
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ Makefile.in
2424
/sigc++config.h
2525
/sigc++-*.pc
2626
/stamp-h?
27+
/.vs
28+
/MSVC_NMake/release/x64
29+
/MSVC_NMake/vc140.pdb

MSVC_NMake/res.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#pragma once
2+
3+
#define SIGCXX_MAJOR_VERSION 2
4+
#define SIGCXX_MINOR_VERSION 99
5+
#define SIGCXX_MICRO_VERSION 1
6+
7+
//#define SIGCXX_API_VERSION 3.0
8+
//#define PACKAGE_VERSION ${ SIGCXX_MAJOR_VERSION }.${ SIGCXX_MINOR_VERSION }.${ SIGCXX_MICRO_VERSION }
9+
//#define LIBSIGCPP_SOVERSION 0
10+

MSVC_NMake/sigc.rc.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
#include <winver.h>
3-
3+
#include "res.h"
44
VS_VERSION_INFO VERSIONINFO
5-
FILEVERSION @SIGCXX_MAJOR_VERSION@,@SIGCXX_MINOR_VERSION@,@SIGCXX_MICRO_VERSION@,1
6-
PRODUCTVERSION @SIGCXX_MAJOR_VERSION@,@SIGCXX_MINOR_VERSION@,@SIGCXX_MICRO_VERSION@,1
5+
FILEVERSION SIGCXX_MAJOR_VERSION , SIGCXX_MINOR_VERSION , SIGCXX_MICRO_VERSION ,1
6+
PRODUCTVERSION SIGCXX_MAJOR_VERSION , SIGCXX_MINOR_VERSION , SIGCXX_MICRO_VERSION ,1
77
FILEFLAGSMASK 0
88
FILEFLAGS 0x0L
99
FILEOS VOS__WINDOWS32

sigc++-uninstalled.pc.in

Lines changed: 0 additions & 9 deletions
This file was deleted.

sigc++.pc.in renamed to sigc++.pc

File renamed without changes.

sigc++config.h.in

Lines changed: 0 additions & 66 deletions
This file was deleted.

0 commit comments

Comments
 (0)