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:
@@ -62,11 +62,11 @@
|
||||
|
||||
<section if="LIME_CAIRO">
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/src/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/configs/default/" unless="windows || mac || linux" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/configs/linux/" if="linux" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/configs/windows/" if="windows" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/configs/mac/" if="mac" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/src/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/configs/default/" unless="windows || mac || linux" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/configs/linux/" if="linux" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/configs/windows/" if="windows" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/configs/mac/" if="mac" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/cairo/src/" />
|
||||
<compilerflag value="-DLIME_CAIRO" />
|
||||
<compilerflag value="-DHAVE_CONFIG_H" />
|
||||
@@ -137,7 +137,7 @@
|
||||
|
||||
<section if="LIME_JPEG">
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/jpeg/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/jpeg/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/jpeg/" />
|
||||
<compilerflag value="-DLIME_JPEG" />
|
||||
|
||||
@@ -165,7 +165,7 @@
|
||||
|
||||
<section if="LIME_OGG">
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/ogg/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/ogg/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/ogg/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/vorbis/include/" />
|
||||
<compilerflag value="-DLIME_OGG" />
|
||||
@@ -199,7 +199,7 @@
|
||||
|
||||
<section if="LIME_PNG">
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/png/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/png/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/png/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/zlib/" />
|
||||
<compilerflag value="-DLIME_PNG" />
|
||||
|
||||
@@ -57,19 +57,12 @@ Common problems and their solutions:
|
||||
See also [submodule troubleshooting](#submodule-troubleshooting).
|
||||
|
||||
## Submodule projects
|
||||
Lime includes code from several other C/C++ libraries, each of which is treated as a [submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules). For more details about the libraries, see [lib/README.md](lib/README.md).
|
||||
Lime includes code from several other C/C++ libraries, each of which is treated as a [submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules). For more information on the individual libraries, see [lib/README.md](lib/README.md).
|
||||
|
||||
### Overrides
|
||||
The [overrides folder](lib/overrides) contains a number of customized headers and source files, to be used instead of the equivalent file(s) in the submodule.
|
||||
### Custom headers and source files
|
||||
All submodules are used as-is, meaning Lime never modifies the contents of the submodule folder. When Lime needs to modify or add a file, the file goes in [lib/custom](lib/custom).
|
||||
|
||||
Caution: overridden files require extra maintenance. Avoid overriding if possible, and instead use `-D` flags to make the customizations you need.
|
||||
|
||||
When overriding a header, always include the overrides folder first.
|
||||
|
||||
```xml
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/sdl/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/sdl/include/" />
|
||||
```
|
||||
Caution: overriding a file requires extra maintenance. Always try to find a different solution first. lib/custom should contain as few files as possible.
|
||||
|
||||
### Updating a submodule
|
||||
Submodules are Git repositories in their own right, and are typically kept in "detached HEAD" state. Lime never modifies its submodules directly, but instead changes which commit the HEAD points to.
|
||||
@@ -92,7 +85,7 @@ To update to a more recent version of a submodule:
|
||||
6. If you exit the submodule and run `git status`, you'll find an unstaged change representing the update. Once you [finish testing](#rebuilding), you can commit this change and submit it as a pull request.
|
||||
|
||||
### Submodule troubleshooting
|
||||
Here are some problems you might run into while attempting to build these submodules, and their solutions.
|
||||
Here are some submodule-specific problems you might run into while rebuilding.
|
||||
|
||||
- All submodules are empty:
|
||||
|
||||
@@ -101,24 +94,32 @@ Here are some problems you might run into while attempting to build these submod
|
||||
git submodule update
|
||||
```
|
||||
|
||||
- Rebuilding fails after `git pull`, and `git status` reports changes to the submodules:
|
||||
|
||||
```bash
|
||||
git submodule update
|
||||
```
|
||||
|
||||
- The project is missing a crucial header file, or has `[header].h.in` instead of the header you need:
|
||||
|
||||
1. Look for an `autogen.sh` file. If it exists, run it. (On Windows, you may need [WSL](https://docs.microsoft.com/en-us/windows/wsl/about), or you might be able to find a .bat file that does what you need.)
|
||||
2. If step 1 fails, look for instructions on how to configure the project. This will often involving using `make`, `cmake`, and/or `./configure`. (Again, Windows users may need WSL.)
|
||||
3. One of the above steps should hopefully generate the missing header. Place the generated file inside [the overrides folder](#overrides).
|
||||
3. One of the above steps should hopefully generate the missing header. Place the generated file inside [the custom folder](#custom-headers-and-source-files).
|
||||
|
||||
- The compiler ignores a header in the overrides folder:
|
||||
- The compiler uses the submodule's original header instead of Lime's custom header:
|
||||
|
||||
1. Make sure the overrides folder is included first.
|
||||
1. Make sure the custom folder is included first.
|
||||
|
||||
```xml
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/src/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/src/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/cairo/src/" />
|
||||
```
|
||||
|
||||
2. If the header is in the same directory as the corresponding source files, find a different option. You simply can't override headers in that case. Instead, try setting compiler flags to make the changes you need.
|
||||
2. If the header is in the same directory as the corresponding source files, you cannot override it. Try setting compiler flags to get the result you want, or look for a different file to override.
|
||||
|
||||
```xml
|
||||
<compilerflag value="-DDISABLE_FEATURE" />
|
||||
<compilerflag value="-DENABLE_OTHER_FEATURE" />
|
||||
```
|
||||
|
||||
3. Approach the problem from a different angle. Upgrade or downgrade the submodule, or open an issue.
|
||||
|
||||
@@ -2,17 +2,17 @@
|
||||
|
||||
<files id="native-toolkit-cairo">
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/src/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/configs/default/" unless="windows || mac || linux" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/configs/linux/" if="linux" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/configs/windows/" if="windows" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/cairo/configs/mac/" if="mac" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/src/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/configs/default/" unless="windows || mac || linux" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/configs/linux/" if="linux" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/configs/windows/" if="windows" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/cairo/configs/mac/" if="mac" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/cairo/src/" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/freetype/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/freetype/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/freetype/include/" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/pixman/pixman/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/pixman/pixman/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/pixman/pixman/" />
|
||||
|
||||
<compilerflag value="-DNDEBUG" unless="debug" />
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<files id="native-toolkit-curl-depends" >
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/curl/include/curl/curl.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/curl/lib/curl_config.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/curl/lib/curl_config.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/curl/include/curl/curlver.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/curl/include/curl/easy.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/curl/include/curl/mprintf.h" />
|
||||
@@ -17,7 +17,7 @@
|
||||
<tag value="${NATIVE_TOOLKIT_OPTIM_TAG}" if="NATIVE_TOOLKIT_OPTIM_TAG" />
|
||||
<depend files="native-toolkit-curl-depends" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/curl/lib/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/curl/lib/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/curl/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/curl/lib/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/zlib/" />
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/config/ftconfig.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/config/ftheader.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/config/ftmodule.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/freetype/include/freetype/config/ftoption.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/freetype/include/freetype/config/ftoption.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/config/ftstdlib.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/freetype.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/ftadvanc.h" />
|
||||
@@ -50,7 +50,7 @@
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/ttnameid.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/tttables.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/freetype/include/freetype/tttags.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/freetype/include/ft2build.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/freetype/include/ft2build.h" />
|
||||
|
||||
</files>
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
<tag value="${NATIVE_TOOLKIT_OPTIM_TAG}" if="NATIVE_TOOLKIT_OPTIM_TAG" />
|
||||
<depend files="native-toolkit-freetype-depends" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/freetype/include" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/freetype/include" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/freetype/include" />
|
||||
<compilerflag value="-DFT2_BUILD_LIBRARY" />
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/harfbuzz/src" if="NATIVE_TOOLKIT_HAVE_HARFBUZZ" />
|
||||
|
||||
<compilerflag value="-DNATIVE_TOOLKIT_HAVE_PNG" if="NATIVE_TOOLKIT_HAVE_PNG" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/png" if="NATIVE_TOOLKIT_HAVE_PNG" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/png" if="NATIVE_TOOLKIT_HAVE_PNG" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/png" if="NATIVE_TOOLKIT_HAVE_PNG" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/zlib" /> <!-- To go with FT_CONFIG_OPTION_SYSTEM_ZLIB -->
|
||||
|
||||
@@ -6,13 +6,13 @@
|
||||
|
||||
<tag value="${NATIVE_TOOLKIT_OPTIM_TAG}" if="NATIVE_TOOLKIT_OPTIM_TAG" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/jpeg/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/jpeg/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/jpeg/" />
|
||||
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/cderror.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/cdjpeg.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/jpeg/jconfig.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/jpeg/jconfigint.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/jpeg/jconfig.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/jpeg/jconfigint.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/jdct.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/jerror.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/jinclude.h" />
|
||||
@@ -20,7 +20,7 @@
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/jmorecfg.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/jpegint.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/jpeglib.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/jpeg/jversion.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/jpeg/jversion.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/simd/jsimd.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/jpeg/transupp.h" />
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<xml>
|
||||
|
||||
<files id="native-toolkit-ogg-depends">
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/ogg/include/ogg/config_types.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/ogg/include/ogg/config_types.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/ogg/include/ogg/ogg.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/ogg/include/ogg/os_types.h" />
|
||||
</files>
|
||||
|
||||
<files id="native-toolkit-ogg" tags="">
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/ogg/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/ogg/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/ogg/include/" />
|
||||
<cache value="1" />
|
||||
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
<files id="native-toolkit-openal">
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/openal/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/openal/alc/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/openal/alc/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/openal/alc/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/openal/build/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/openal/build/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/openal/common/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/openal/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/openal/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/openal/include/" />
|
||||
<compilerflag value="-DAL_LIBTYPE_STATIC" if="native_toolkit_openal_static" />
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
|
||||
<section if="NATIVE_TOOLKIT_HAVE_SDL">
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/sdl/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/sdl/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/sdl/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/sdl/include/configs/default/" unless="windows || mac || linux || rpi" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/sdl/include/configs/linux/" if="linux" unless="rpi" />
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
<compilerflag value="-fno-integrated-as" if="HXCPP_CLANG || NDKV20+" unless="mac || ios" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/pixman" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/pixman/pixman" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/pixman" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/pixman/pixman" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/pixman/pixman" />
|
||||
<compilerflag value="-DHAVE_CONFIG_H" />
|
||||
<compilerflag value="-DPIXMAN_NO_TLS" if="windows" />
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<cache value="1" />
|
||||
<tag value="${NATIVE_TOOLKIT_OPTIM_TAG}" if="NATIVE_TOOLKIT_OPTIM_TAG" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/png/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/png/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/png/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/zlib/" />
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/png/pngconf.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/png/pngdebug.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/png/pnginfo.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/png/pnglibconf.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/png/pnglibconf.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/png/pngpriv.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/png/pngstruct.h" />
|
||||
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/sdl/include/SDL_clipboard.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/sdl/include/SDL_config_android.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/sdl/include/SDL_config_iphoneos.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/sdl/include/SDL_config_macosx.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/sdl/include/SDL_config_macosx.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/sdl/include/SDL_config_minimal.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/sdl/include/SDL_config_pandora.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/sdl/include/SDL_config_windows.h" unless="winrt" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/sdl/include/SDL_config_windows.h" unless="winrt" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/sdl/include/SDL_config_winrt.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/sdl/include/SDL_copying.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/sdl/include/SDL_cpuinfo.h" />
|
||||
@@ -96,7 +96,7 @@
|
||||
|
||||
<compilerflag value="-I${ANDROID_NDK_ROOT}/sources/android/cpufeatures" if="android" />
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/sdl/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/sdl/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/sdl/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/sdl/src/hidapi/hidapi/" />
|
||||
<compilerflag value="-I${SDL_CONFIG_PATH}" if="SDL_CONFIG_PATH" />
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
<depend files="native-toolkit-vorbis-depends" />
|
||||
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/overrides/ogg/include/ogg/config_types.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/custom/ogg/include/ogg/config_types.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/ogg/include/ogg/ogg.h" />
|
||||
<depend name="${NATIVE_TOOLKIT_PATH}/ogg/include/ogg/os_types.h" />
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/vorbis/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/vorbis/lib/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/overrides/ogg/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/custom/ogg/include/" />
|
||||
<compilerflag value="-I${NATIVE_TOOLKIT_PATH}/ogg/include/" />
|
||||
|
||||
<file name="${NATIVE_TOOLKIT_PATH}/vorbis/lib/analysis.c" />
|
||||
|
||||
Reference in New Issue
Block a user