diff options
author | gregory guy <g-gregory@gmx.fr> | 2019-04-22 19:00:51 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-04-28 16:04:50 +0200 |
commit | 32fc564b71ffaf9cec97f99fb9d99541c3ab279f (patch) | |
tree | 4edc2902a863d7027b216f6bb0f656fbd24c9662 /art_config.h.in | |
parent | b72d215669ce409ed6d6b6443b2fedb6c8045289 (diff) | |
download | libart-lgpl-32fc564b71ffaf9cec97f99fb9d99541c3ab279f.tar.gz libart-lgpl-32fc564b71ffaf9cec97f99fb9d99541c3ab279f.zip |
conversion to the cmake building system
Cleanup of generated headers.
Add common cmake submodule.
Signed-off-by: gregory guy <g-gregory@gmx.fr>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit b996d3d1de7126e111f2c48b59422ab434478377)
Diffstat (limited to 'art_config.h.in')
-rw-r--r-- | art_config.h.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/art_config.h.in b/art_config.h.in new file mode 100644 index 0000000..4d42ed9 --- /dev/null +++ b/art_config.h.in @@ -0,0 +1,14 @@ + +#ifndef _ART_CONFIG_H_ +#define _ART_CONFIG_H_ + +#define ART_SIZEOF_CHAR @ART_SIZEOF_CHAR@ +#define ART_SIZEOF_SHORT @ART_SIZEOF_SHORT@ +#define ART_SIZEOF_INT @ART_SIZEOF_INT@ +#define ART_SIZEOF_LONG @ART_SIZEOF_LONG@ + +typedef @ART_U8_TYPE@ art_u8; +typedef @ART_U16_TYPE@ art_u16; +typedef @ART_U32_TYPE@ art_u32; + +#endif /* _ART_CONFIG_H_ */ |