59ccfd9985a96bf799d8420d1d243fb144274034
[platform/upstream/libxml++.git] / MSVC_NMake / info-msvc.mak
1 # NMake Makefile portion for displaying config info
2
3 all-build-info:
4         @echo.
5         @echo ----------
6         @echo Build info
7         @echo ---------
8         @echo Build Type: $(CFG)
9
10 help:
11         @echo.
12         @echo ============================
13         @echo Building glibmm Using NMake
14         @echo ============================
15         @echo nmake /f Makefile.vc CFG=[release^|debug] ^<PREFIX=PATH^> ^<option1=xxx option2=xxx^>
16         @echo.
17         @echo Where:
18         @echo ------
19         @echo CFG: Required, use CFG=release for an optimized build and CFG=debug
20         @echo for a debug build.  PDB files are generated for all builds.
21         @echo.
22         @echo PREFIX: Optional, the path where dependent libraries and tools may be
23         @echo found, default is ^$(srcrootdir)\..\vs^$(short_vs_ver)\^$(platform),
24         @echo where ^$(short_vs_ver) is 15 for VS 2017 and so on; and
25         @echo ^$(platform) is Win32 for 32-bit builds and x64 for x64 builds.
26         @echo.
27         @echo -----
28         @echo A few options are supported here, namely:
29         @echo.
30         @echo USE_COMPAT_LIBS: Use this if your libsigc++ was built with Visual Studio 2017 or
31         @echo 2019 but has the "vc140" in its .lib filename.
32         @echo.
33         @echo USE_MESON_LIBS: Use DLLs and LIBs of C++ dependencies that are built with Meson,
34         @echo as applicable.
35         @echo ======
36         @echo A 'clean' target is supported to remove all generated files, intermediate
37         @echo object files and binaries for the specified configuration.
38         @echo.
39         @echo An 'install' target is supported to copy the build (DLLs, utility programs,
40         @echo LIBs, along with the header files) to appropriate locations under ^$(PREFIX).
41         @echo.
42         @echo A 'tests' target is supported to build the test programs.
43         @echo ======
44         @echo.