mirror of
https://github.com/godotengine/godot-cpp.git
synced 2026-01-03 18:09:13 +03:00
18 lines
468 B
CMake
18 lines
468 B
CMake
#[=======================================================================[.rst:
|
|
Linux
|
|
-----
|
|
|
|
This file contains functions for options and configuration for targeting the
|
|
Linux platform
|
|
|
|
]=======================================================================]
|
|
function(linux_options)
|
|
# Linux Options
|
|
endfunction()
|
|
|
|
function(linux_generate)
|
|
target_compile_definitions(${TARGET_NAME} PUBLIC LINUX_ENABLED UNIX_ENABLED)
|
|
|
|
common_compiler_flags()
|
|
endfunction()
|