comparison make/windows/makefiles/vm.make @ 12014:31f3b1e1c5e5

8016601: Unable to build hsx24 on Windows using project creator and Visual Studio Summary: ProjectCreator tool is modified to support two new options: '-relativeAltSrcInclude' and '-altRelativeInclude' which prevents IDE linker errors. Also fixed some cmd line build linker warnings. Misc cleanups. Reviewed-by: rdurbin, coleenp
author dcubed
date Thu, 08 Aug 2013 09:21:30 -0700
parents 33c52908bcdb
children 3cce976666d9 c062a6e1fa33
comparison
equal deleted inserted replaced
12013:195ff07bc7f6 12014:31f3b1e1c5e5
32 32
33 !ifdef RELEASE 33 !ifdef RELEASE
34 CXX_FLAGS=$(CXX_FLAGS) /D "PRODUCT" 34 CXX_FLAGS=$(CXX_FLAGS) /D "PRODUCT"
35 !else 35 !else
36 CXX_FLAGS=$(CXX_FLAGS) /D "ASSERT" 36 CXX_FLAGS=$(CXX_FLAGS) /D "ASSERT"
37 !endif
38
39 !if "$(Variant)" == "core"
40 # No need to define anything, CORE is defined as !COMPILER1 && !COMPILER2
41 !endif 37 !endif
42 38
43 !if "$(Variant)" == "compiler1" 39 !if "$(Variant)" == "compiler1"
44 CXX_FLAGS=$(CXX_FLAGS) /D "COMPILER1" 40 CXX_FLAGS=$(CXX_FLAGS) /D "COMPILER1"
45 !endif 41 !endif