Rename "overrides" to "custom."

This helps shift the emphasis from "replacing existing files" to "adding
missing files," without ruling either option out.
This commit is contained in:
Joseph Cloutier
2022-05-22 23:27:47 -04:00
parent 55f3e74596
commit 87e779b971
44 changed files with 58 additions and 57 deletions

View File

@@ -0,0 +1,21 @@
#ifdef HX_MACOS
#include "config-macos-x86_64.h"
#elif defined(HX_WINDOWS)
#ifdef HXCPP_M64
#include "config-windows-x86_64.h"
#else
#include "config-windows-x86.h"
#endif
#elif defined(HX_LINUX)
#include "config-linux-x86_64.h"
#elif defined (HX_ANDROID)
#include "config-android.h"
#endif