diff options
Diffstat (limited to 'externals')
| -rw-r--r-- | externals/nx_tzdb/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/externals/nx_tzdb/CMakeLists.txt b/externals/nx_tzdb/CMakeLists.txt index db00e9d40..8429f82e5 100644 --- a/externals/nx_tzdb/CMakeLists.txt +++ b/externals/nx_tzdb/CMakeLists.txt | |||
| @@ -20,8 +20,10 @@ endif() | |||
| 20 | if ("${GNU_DATE}" STREQUAL "GNU_DATE-NOTFOUND") | 20 | if ("${GNU_DATE}" STREQUAL "GNU_DATE-NOTFOUND") |
| 21 | set(CAN_BUILD_NX_TZDB false) | 21 | set(CAN_BUILD_NX_TZDB false) |
| 22 | endif() | 22 | endif() |
| 23 | if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows") | 23 | if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows" OR ANDROID) |
| 24 | # tzdb_to_nx currently requires a posix-compliant host | 24 | # tzdb_to_nx currently requires a posix-compliant host |
| 25 | # MinGW and Android are handled here due to the executable format being different from the host system | ||
| 26 | # TODO (lat9nq): cross-compiling support | ||
| 25 | set(CAN_BUILD_NX_TZDB false) | 27 | set(CAN_BUILD_NX_TZDB false) |
| 26 | endif() | 28 | endif() |
| 27 | 29 | ||