File tree 3 files changed +18
-0
lines changed 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,12 @@ set ( CFILES
140
140
set ( HFILES
141
141
${INCDIR} /tidyplatform.h ${INCDIR} /tidy.h ${INCDIR} /tidyenum.h
142
142
${INCDIR} /tidybuffio.h )
143
+
144
+ option (TIDY_COMPAT_HEADERS "If set to ON, compatability headers are included" OFF )
145
+ if (TIDY_COMPAT_HEADERS)
146
+ set ( HFILES ${HFILES} ${INCDIR} /buffio.h ${INCDIR} /platform.h )
147
+ endif ()
148
+
143
149
set ( LIBHFILES
144
150
${SRCDIR} /access.h ${SRCDIR} /attrs.h ${SRCDIR} /attrdict.h ${SRCDIR} /charsets.h
145
151
${SRCDIR} /clean.h ${SRCDIR} /config.h ${SRCDIR} /entities.h
Original file line number Diff line number Diff line change
1
+ #ifdef __GNUC__
2
+ #warning "FIXME: Using compatibility tidy header (buffio.h) that will go away!"
3
+ #endif
4
+
5
+ #include "tidybuffio.h"
6
+
Original file line number Diff line number Diff line change
1
+ #ifdef __GNUC__
2
+ #warning "FIXME: Using compatibility tidy header (platform.h) that will go away!"
3
+ #endif
4
+
5
+ #include "tidyplatform.h"
6
+
You can’t perform that action at this time.
0 commit comments