ios.cmake 454 B

1234567891011121314151617
  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} PUBLIC IOS_ENABLED UNIX_ENABLED)
  12. common_compiler_flags()
  13. endfunction()