ios.cmake 495 B

123456789101112131415161718192021
  1. #[=======================================================================[.rst:
  2. Ios
  3. ---
  4. This file contains functions for options and configuration for targeting the
  5. Ios platform
  6. ]=======================================================================]
  7. function(ios_options)
  8. # iOS options
  9. endfunction()
  10. function(ios_generate)
  11. target_compile_definitions(${TARGET_NAME}
  12. PUBLIC
  13. IOS_ENABLED
  14. UNIX_ENABLED
  15. )
  16. common_compiler_flags()
  17. endfunction()