reactos/lib/3rdparty/stlport/build/test/unit/msvc.mak
Amine Khaldi 4efda499f7 [CMAKE]
Jerome Gardou:
- Add STLport 5.2.1 (yes, STLport, the c++ stl implementation) to build. For now, it works only in user mode.
- Link some c++ executables to it
- sol.exe : one step towards a complete and modern OS.
- Dedicated to Amine for his patience and his help.
- Might Break Things! (tm)

svn path=/branches/cmake-bringup/; revision=49046
2010-10-07 22:09:31 +00:00

43 lines
1.2 KiB
Makefile

!if EXIST(..\..\Makefiles\nmake\config.mak)
!include ..\..\Makefiles\nmake\config.mak
!endif
!ifndef COMPILER_NAME
!error No compiler set, please run 'configure --help' first and chose a compiler.
!endif
!if (("$(COMPILER_NAME)" != "vc6") && \
("$(COMPILER_NAME)" != "vc70") && \
("$(COMPILER_NAME)" != "vc71") && \
("$(COMPILER_NAME)" != "vc8") && \
("$(COMPILER_NAME)" != "vc9") && \
("$(COMPILER_NAME)" != "icl"))
!error '$(COMPILER_NAME)' not supported by this make file, please rerun 'configure' script and follow instructions.
!endif
SRCROOT=../..
STLPORT_DIR=../../..
!include Makefile.inc
!ifndef WITHOUT_STLPORT
INCLUDES=$(INCLUDES) /I$(STLPORT_INCLUDE_DIR) /I$(STLPORT_DIR)/src /FI warning_disable.h
!else
INCLUDES=$(INCLUDES) /I$(STLPORT_DIR)/src /FI warning_disable.h
DEFS=/DWITHOUT_STLPORT
!endif
!if ("$(COMPILER_NAME)" != "icl")
# Important in a number of builds.
OPT = /Zm800
!endif
DEFS_DBG=/D_STLP_DEBUG_UNINITIALIZED
DEFS_STLDBG=/D_STLP_DEBUG_UNINITIALIZED
DEFS_STATIC_DBG=/D_STLP_DEBUG_UNINITIALIZED
DEFS_STATIC_STLDBG=/D_STLP_DEBUG_UNINITIALIZED
LDSEARCH=$(LDSEARCH) /LIBPATH:$(STLPORT_LIB_DIR)
!include $(SRCROOT)/Makefiles/nmake/top.mak