Skip to content

Commit fb1ce34

Browse files
fanc999-1kjellahl
authored andcommitted
Rename MSVC_Net2010 to MSVC_NMake
This initiates the move from the Visual Studio project files to using NMake Makefiles, so that we reduce the likelihood of the MSVC build files becoming outdated, by sharing the autotools build files' source listings.
1 parent 09de4f2 commit fb1ce34

39 files changed

+7
-7
lines changed

MSVC_Net2010/README renamed to MSVC_NMake/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Building libxml++ with Visual Studio 2010
44
* Install the latest Win32 GTK+ Development files from ftp://ftp.gnome.org/pub/GNOME/binaries/win32/gtk+/
55
* Build libsigc++ 2.0.6 and glibmm from source
66
* Add GTK+, libsigc++ and glibmm to the include and lib paths in Visual Studio.
7-
* Load the MSVC_Net2010/libxml++.sln solution.
7+
* Load the MSVC_NMake/libxml++.sln solution.
88
* Build the entire solution. Run the tests.
99

1010
Cedric Gustin
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ nodist_library_config_HEADERS = libxml++config.h
1616
pkgconfigdir = $(libdir)/pkgconfig
1717
nodist_pkgconfig_DATA = $(LIBXMLXX_MODULE_NAME).pc
1818

19-
include $(srcdir)/MSVC_Net2010/filelist.am
19+
include $(srcdir)/MSVC_NMake/filelist.am
2020

21-
dist_noinst_DATA = $(addprefix MSVC_Net2010/,$(msvc_net2010_data))
21+
dist_noinst_DATA = $(addprefix MSVC_NMake/,$(msvc_net2010_data))
2222

2323
dist_noinst_SCRIPTS = autogen.sh
2424

25-
DISTCLEANFILES = MSVC_Net2010/libxml++/libxml++config.h
25+
DISTCLEANFILES = MSVC_NMake/libxml++/libxml++config.h
2626

2727
# Optional: auto-generate the ChangeLog file from the git log on make dist
2828
include $(top_srcdir)/build/dist-changelog.am

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ AC_CONFIG_FILES([Makefile
6666
tests/Makefile
6767
docs/Makefile
6868
docs/reference/Doxyfile
69-
MSVC_Net2010/libxml++/libxml++.rc
69+
MSVC_NMake/libxml++/libxml++.rc
7070
${LIBXMLXX_MODULE_NAME}.pc:libxml++.pc.in])
7171

7272
# Copy the generated configuration headers into the MSVC project directories.
73-
AC_CONFIG_COMMANDS([MSVC_Net2010/libxml++/libxml++config.h],
74-
[cp -f libxml++config.h MSVC_Net2010/libxml++/libxml++config.h])
73+
AC_CONFIG_COMMANDS([MSVC_NMake/libxml++/libxml++config.h],
74+
[cp -f libxml++config.h MSVC_NMake/libxml++/libxml++config.h])
7575

7676
AC_OUTPUT

0 commit comments

Comments
 (0)