Moved CUnicode to lib/io. That's a reasonable place for it
that's after lib/mt. It needs to be after lib/mt in preparation for supporting platforms without the reentrant wide char and multi-byte functions.
This commit is contained in:
parent
66c4b66d7c
commit
0ce15c1a9b
|
@ -29,14 +29,12 @@ libbase_a_SOURCES = \
|
||||||
CLog.cpp \
|
CLog.cpp \
|
||||||
CStopwatch.cpp \
|
CStopwatch.cpp \
|
||||||
CString.cpp \
|
CString.cpp \
|
||||||
CUnicode.cpp \
|
|
||||||
XBase.cpp \
|
XBase.cpp \
|
||||||
BasicTypes.h \
|
BasicTypes.h \
|
||||||
CFunctionJob.h \
|
CFunctionJob.h \
|
||||||
CLog.h \
|
CLog.h \
|
||||||
CStopwatch.h \
|
CStopwatch.h \
|
||||||
CString.h \
|
CString.h \
|
||||||
CUnicode.h \
|
|
||||||
IInterface.h \
|
IInterface.h \
|
||||||
IJob.h \
|
IJob.h \
|
||||||
TMethodJob.h \
|
TMethodJob.h \
|
||||||
|
|
|
@ -30,12 +30,14 @@ libio_a_SOURCES = \
|
||||||
CInputStreamFilter.cpp \
|
CInputStreamFilter.cpp \
|
||||||
COutputStreamFilter.cpp \
|
COutputStreamFilter.cpp \
|
||||||
CStreamBuffer.cpp \
|
CStreamBuffer.cpp \
|
||||||
|
CUnicode.cpp \
|
||||||
XIO.cpp \
|
XIO.cpp \
|
||||||
CBufferedInputStream.h \
|
CBufferedInputStream.h \
|
||||||
CBufferedOutputStream.h \
|
CBufferedOutputStream.h \
|
||||||
CInputStreamFilter.h \
|
CInputStreamFilter.h \
|
||||||
COutputStreamFilter.h \
|
COutputStreamFilter.h \
|
||||||
CStreamBuffer.h \
|
CStreamBuffer.h \
|
||||||
|
CUnicode.h s\
|
||||||
IInputStream.h \
|
IInputStream.h \
|
||||||
IOutputStream.h \
|
IOutputStream.h \
|
||||||
IStreamFilterFactory.h \
|
IStreamFilterFactory.h \
|
||||||
|
|
|
@ -69,5 +69,6 @@ EXTRA_libplatform_a_SOURCES = \
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I$(VDEPTH)/lib/base \
|
-I$(VDEPTH)/lib/base \
|
||||||
-I$(VDEPTH)/lib/mt \
|
-I$(VDEPTH)/lib/mt \
|
||||||
|
-I$(VDEPTH)/lib/io \
|
||||||
-I$(VDEPTH)/lib/synergy \
|
-I$(VDEPTH)/lib/synergy \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
Loading…
Reference in New Issue