File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
15
15
add_subdirectory (_FoundationCShims)
16
16
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" ) )
19
19
add_subdirectory (FoundationMacros)
20
20
endif ()
21
21
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ add_subdirectory(String)
48
48
add_subdirectory (TimeZone)
49
49
add_subdirectory (URL)
50
50
51
- if (NOT CMAKE_SYSTEM_NAME STREQUAL Windows)
51
+ if (NOT ( CMAKE_SYSTEM_NAME STREQUAL " Windows" OR CMAKE_SYSTEM_NAME STREQUAL "Android" ) )
52
52
# Depend on FoundationMacros
53
53
add_dependencies (FoundationEssentials FoundationMacros)
54
54
target_compile_options (FoundationEssentials PRIVATE -plugin-path ${CMAKE_BINARY_DIR} /lib)
You can’t perform that action at this time.
0 commit comments