Files
tdesktop/cmake/target_compile_options_if_exists.cmake
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
init
2026-02-16 15:50:16 +03:00

44 lines
1.7 KiB
CMake

# This file is part of Desktop App Toolkit,
# a set of libraries for developing nice desktop applications.
#
# For license and copyright information please follow this link:
# https://github.com/desktop-app/legal/blob/master/LEGAL
include(CheckCXXCompilerFlag)
function(target_compile_options_if_exists target_name)
set(writing_now "")
set(private_options "")
set(public_options "")
set(interface_options "")
foreach (entry ${ARGN})
if (${entry} STREQUAL "PRIVATE" OR ${entry} STREQUAL "PUBLIC" OR ${entry} STREQUAL "INTERFACE")
set(writing_now ${entry})
else()
string(MAKE_C_IDENTIFIER ${entry} entry_identifier)
check_cxx_compiler_flag(${entry} DESKTOP_APP_${entry_identifier}_EXISTS)
if (DESKTOP_APP_${entry_identifier}_EXISTS)
if ("${writing_now}" STREQUAL "PRIVATE")
list(APPEND private_options ${entry})
elseif ("${writing_now}" STREQUAL "PUBLIC")
list(APPEND public_options ${entry})
elseif ("${writing_now}" STREQUAL "INTERFACE")
list(APPEND interface_options ${entry})
else()
message(FATAL_ERROR "Unknown options scope for target ${target_name}")
endif()
endif()
endif()
endforeach()
if (NOT "${public_options}" STREQUAL "")
target_compile_options(${target_name} PUBLIC ${public_options})
endif()
if (NOT "${private_options}" STREQUAL "")
target_compile_options(${target_name} PRIVATE ${private_options})
endif()
if (NOT "${interface_options}" STREQUAL "")
target_compile_options(${target_name} INTERFACE ${interface_options})
endif()
endfunction()