2024-11-21 00:30:48 +00:00
|
|
|
#[=======================================================================[.rst:
|
|
|
|
Ios
|
|
|
|
---
|
|
|
|
|
|
|
|
This file contains functions for options and configuration for targeting the
|
|
|
|
Ios platform
|
|
|
|
|
|
|
|
]=======================================================================]
|
|
|
|
function(ios_options)
|
|
|
|
# iOS options
|
|
|
|
endfunction()
|
|
|
|
|
2024-12-11 00:10:21 +00:00
|
|
|
function(ios_generate)
|
2024-11-21 00:30:48 +00:00
|
|
|
target_compile_definitions(${TARGET_NAME}
|
|
|
|
PUBLIC
|
|
|
|
IOS_ENABLED
|
|
|
|
UNIX_ENABLED
|
|
|
|
)
|
|
|
|
|
2024-12-11 00:10:21 +00:00
|
|
|
common_compiler_flags()
|
2024-11-21 00:30:48 +00:00
|
|
|
endfunction()
|