[C] Enabled wchar_t and utf-8 by default

This commit is contained in:
seleznevae
2019-08-29 09:12:58 +03:00
parent 5bfabee696
commit 64dbd4c2c4
9 changed files with 79 additions and 24 deletions

View File

@@ -1,4 +1,5 @@
option(FORT_HAVE_WCHAR "Enable wchar support" ON)
option(FORT_HAVE_UTF8 "Enable UTF8 support" ON)
option(FORT_TEST_BUILD "Export some internal symbols for tests" ON)

View File

@@ -14,7 +14,7 @@
#define THEN(...)
#define SCENARIO(...)
#if defined(FT_CONGIG_HAVE_WCHAR)
#if !defined(FT_CONGIG_DISABLE_WCHAR)
#define FT_HAVE_WCHAR
#endif