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