File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1414
1515add_subdirectory (_FoundationCShims)
1616
17- # Disable the macro build on Windows until we can correctly build it for the host architecture
18- if (NOT CMAKE_SYSTEM_NAME STREQUAL Windows)
17+ # Disable the macro build on Windows and Android until we can correctly build it for the host architecture
18+ if (NOT ( CMAKE_SYSTEM_NAME STREQUAL " Windows" OR CMAKE_SYSTEM_NAME STREQUAL "Android" ) )
1919 add_subdirectory (FoundationMacros)
2020endif ()
2121
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ add_subdirectory(String)
4848add_subdirectory (TimeZone)
4949add_subdirectory (URL)
5050
51- if (NOT CMAKE_SYSTEM_NAME STREQUAL Windows)
51+ if (NOT ( CMAKE_SYSTEM_NAME STREQUAL " Windows" OR CMAKE_SYSTEM_NAME STREQUAL "Android" ) )
5252 # Depend on FoundationMacros
5353 add_dependencies (FoundationEssentials FoundationMacros)
5454 target_compile_options (FoundationEssentials PRIVATE -plugin-path ${CMAKE_BINARY_DIR} /lib)
You can’t perform that action at this time.
0 commit comments