mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
some MSBUILD fixes (nw)
This commit is contained in:
parent
8929ef8949
commit
ee942ae0fb
2 changed files with 4 additions and 1 deletions
4
makefile
4
makefile
|
@ -745,7 +745,9 @@ MSBUILD_PARAMS += /p:Platform=x64
|
|||
else
|
||||
MSBUILD_PARAMS += /p:Platform=win32
|
||||
endif
|
||||
ifeq ($(SUBTARGET),mess)
|
||||
ifeq ($(SUBTARGET),mame)
|
||||
MSBUILD_SOLUTION := $(SUBTARGET).sln
|
||||
else ifeq ($(SUBTARGET),mess)
|
||||
MSBUILD_SOLUTION := $(SUBTARGET).sln
|
||||
else
|
||||
MSBUILD_SOLUTION := $(TARGET)$(SUBTARGET).sln
|
||||
|
|
|
@ -1134,6 +1134,7 @@ configuration { "vs*" }
|
|||
}
|
||||
|
||||
buildoptions {
|
||||
"/WX", -- Treats all compiler warnings as errors.
|
||||
"/wd4025", -- warning C4025: 'number' : based pointer passed to function with variable arguments: parameter number
|
||||
"/wd4003", -- warning C4003: not enough actual parameters for macro 'xxx'
|
||||
"/wd4018", -- warning C4018: 'x' : signed/unsigned mismatch
|
||||
|
|
Loading…
Reference in a new issue