Skip to content

Commit

Permalink
cmake: Warn about flaky / potentially deprecated Android support.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfonseca committed Apr 11, 2017
1 parent 173fda8 commit e3509be
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ option (ENABLE_FRAME_POINTER "Disable frame pointer omission" ON)

option (ENABLE_ASAN "Enable Address Sanitizer" OFF)

if (ANDROID)
message (WARNING
"\n"
" WARNING: ANDROID SUPPORT IS UNVERIFIED AND MIGHT BE REMOVED IN THE NEAR FUTURE\n"
" See https://goo.gl/yQEXFd\n"
""
)
execute_process (COMMAND "${CMAKE_COMMAND}" -E sleep 1)
endif ()

# Proprietary Linux games often ship their own libraries (zlib, libstdc++,
# etc.) in order to ship a single set of binaries across multiple
# distributions. Given that apitrace wrapper modules will be loaded into those
Expand Down

0 comments on commit e3509be

Please sign in to comment.