From 1933a27006027b19e52ab9af63893ddb3d0eae81 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Thu, 12 Oct 2023 22:36:55 +0200 Subject: [PATCH] idk what I'm doing pls help --- CMakePresets.json | 37 + build.sh | 2 + cmakedeps_macros.cmake | 87 + conan_toolchain.cmake | 88 + conanbuild.sh | 1 + conanbuildenv-release-x86_64.sh | 16 + conanfile.txt | 9 + conanrun.sh | 1 + conanrunenv-release-x86_64.sh | 14 + deactivate_conanbuild.sh | 1 + deactivate_conanbuildenv-release-x86_64.sh | 2 + deactivate_conanrun.sh | 1 + glfw3-Target-release.cmake | 73 + glfw3-config-version.cmake | 21 + glfw3-config.cmake | 40 + glfw3-release-x86_64-data.cmake | 47 + glfw3Targets.cmake | 27 + opengl_system-Target-release.cmake | 73 + opengl_system-config-version.cmake | 21 + opengl_system-config.cmake | 40 + opengl_system-release-x86_64-data.cmake | 44 + opengl_systemTargets.cmake | 27 + src/main.cpp | 12 + xorg-Target-release.cmake | 2971 ++++++++++++++++++++ xorg-config-version.cmake | 21 + xorg-config.cmake | 40 + xorg-release-x86_64-data.cmake | 1533 ++++++++++ xorgTargets.cmake | 27 + 28 files changed, 5276 insertions(+) create mode 100644 CMakePresets.json create mode 100644 build.sh create mode 100644 cmakedeps_macros.cmake create mode 100644 conan_toolchain.cmake create mode 100644 conanbuild.sh create mode 100644 conanbuildenv-release-x86_64.sh create mode 100644 conanfile.txt create mode 100644 conanrun.sh create mode 100644 conanrunenv-release-x86_64.sh create mode 100644 deactivate_conanbuild.sh create mode 100644 deactivate_conanbuildenv-release-x86_64.sh create mode 100644 deactivate_conanrun.sh create mode 100644 glfw3-Target-release.cmake create mode 100644 glfw3-config-version.cmake create mode 100644 glfw3-config.cmake create mode 100644 glfw3-release-x86_64-data.cmake create mode 100644 glfw3Targets.cmake create mode 100644 opengl_system-Target-release.cmake create mode 100644 opengl_system-config-version.cmake create mode 100644 opengl_system-config.cmake create mode 100644 opengl_system-release-x86_64-data.cmake create mode 100644 opengl_systemTargets.cmake create mode 100644 src/main.cpp create mode 100644 xorg-Target-release.cmake create mode 100644 xorg-config-version.cmake create mode 100644 xorg-config.cmake create mode 100644 xorg-release-x86_64-data.cmake create mode 100644 xorgTargets.cmake diff --git a/CMakePresets.json b/CMakePresets.json new file mode 100644 index 0000000..dfeb656 --- /dev/null +++ b/CMakePresets.json @@ -0,0 +1,37 @@ +{ + "version": 3, + "vendor": { + "conan": {} + }, + "cmakeMinimumRequired": { + "major": 3, + "minor": 15, + "patch": 0 + }, + "configurePresets": [ + { + "name": "conan-release", + "displayName": "'conan-release' config", + "description": "'conan-release' configure using 'Unix Makefiles' generator", + "generator": "Unix Makefiles", + "cacheVariables": { + "CMAKE_POLICY_DEFAULT_CMP0091": "NEW", + "CMAKE_BUILD_TYPE": "Release" + }, + "toolchainFile": "/home/plex/Documents/code/cpp/glsl-basic/conan_toolchain.cmake", + "binaryDir": "/home/plex/Documents/code/cpp/glsl-basic" + } + ], + "buildPresets": [ + { + "name": "conan-release", + "configurePreset": "conan-release" + } + ], + "testPresets": [ + { + "name": "conan-release", + "configurePreset": "conan-release" + } + ] +} \ No newline at end of file diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..3056333 --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +#!/bin/bash +conan install . --build missing diff --git a/cmakedeps_macros.cmake b/cmakedeps_macros.cmake new file mode 100644 index 0000000..b3ed31e --- /dev/null +++ b/cmakedeps_macros.cmake @@ -0,0 +1,87 @@ + +macro(conan_find_apple_frameworks FRAMEWORKS_FOUND FRAMEWORKS FRAMEWORKS_DIRS) + if(APPLE) + foreach(_FRAMEWORK ${FRAMEWORKS}) + # https://cmake.org/pipermail/cmake-developers/2017-August/030199.html + find_library(CONAN_FRAMEWORK_${_FRAMEWORK}_FOUND NAMES ${_FRAMEWORK} PATHS ${FRAMEWORKS_DIRS} CMAKE_FIND_ROOT_PATH_BOTH) + if(CONAN_FRAMEWORK_${_FRAMEWORK}_FOUND) + list(APPEND ${FRAMEWORKS_FOUND} ${CONAN_FRAMEWORK_${_FRAMEWORK}_FOUND}) + message(VERBOSE "Framework found! ${FRAMEWORKS_FOUND}") + else() + message(FATAL_ERROR "Framework library ${_FRAMEWORK} not found in paths: ${FRAMEWORKS_DIRS}") + endif() + endforeach() + endif() +endmacro() + + +function(conan_package_library_targets libraries package_libdir package_bindir library_type + is_host_windows deps_target out_libraries_target config_suffix package_name no_soname_mode) + set(_out_libraries_target "") + + foreach(_LIBRARY_NAME ${libraries}) + find_library(CONAN_FOUND_LIBRARY NAMES ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(VERBOSE "Conan: Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + + # Create a micro-target for each lib/a found + # Allow only some characters for the target name + string(REGEX REPLACE "[^A-Za-z0-9.+_-]" "_" _LIBRARY_NAME ${_LIBRARY_NAME}) + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${config_suffix}) + + if(is_host_windows AND library_type STREQUAL "SHARED") + # Store and reset the variable, so it doesn't leak + set(_OLD_CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES}) + set(CMAKE_FIND_LIBRARY_SUFFIXES .dll ${CMAKE_FIND_LIBRARY_SUFFIXES}) + find_library(CONAN_SHARED_FOUND_LIBRARY NAMES ${_LIBRARY_NAME} PATHS ${package_bindir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + set(CMAKE_FIND_LIBRARY_SUFFIXES ${_OLD_CMAKE_FIND_LIBRARY_SUFFIXES}) + if(NOT CONAN_SHARED_FOUND_LIBRARY) + message(STATUS "Cannot locate shared library: ${_LIBRARY_NAME}") + message(DEBUG "DLL library not found, creating UNKNOWN IMPORTED target") + if(NOT TARGET ${_LIB_NAME}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + endif() + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION${config_suffix} ${CONAN_FOUND_LIBRARY}) + else() + if(NOT TARGET ${_LIB_NAME}) + add_library(${_LIB_NAME} SHARED IMPORTED) + endif() + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION${config_suffix} ${CONAN_SHARED_FOUND_LIBRARY}) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_IMPLIB${config_suffix} ${CONAN_FOUND_LIBRARY}) + message(DEBUG "Found DLL and STATIC at ${CONAN_SHARED_FOUND_LIBRARY}, ${CONAN_FOUND_LIBRARY}") + endif() + unset(CONAN_SHARED_FOUND_LIBRARY CACHE) + else() + if(NOT TARGET ${_LIB_NAME}) + # library_type can be STATIC, still UNKNOWN (if no package type available in the recipe) or SHARED (but no windows) + add_library(${_LIB_NAME} ${library_type} IMPORTED) + endif() + message(DEBUG "Created target ${_LIB_NAME} ${library_type} IMPORTED") + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION${config_suffix} ${CONAN_FOUND_LIBRARY} IMPORTED_NO_SONAME ${no_soname_mode}) + endif() + list(APPEND _out_libraries_target ${_LIB_NAME}) + message(VERBOSE "Conan: Found: ${CONAN_FOUND_LIBRARY}") + else() + message(FATAL_ERROR "Library '${_LIBRARY_NAME}' not found in package. If '${_LIBRARY_NAME}' is a system library, declare it with 'cpp_info.system_libs' property") + endif() + unset(CONAN_FOUND_LIBRARY CACHE) + endforeach() + + # Add the dependencies target for all the imported libraries + foreach(_T ${_out_libraries_target}) + set_property(TARGET ${_T} PROPERTY INTERFACE_LINK_LIBRARIES ${deps_target} APPEND) + endforeach() + + set(${out_libraries_target} ${_out_libraries_target} PARENT_SCOPE) +endfunction() + +macro(check_build_type_defined) + # Check that the -DCMAKE_BUILD_TYPE argument is always present + get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT isMultiConfig AND NOT CMAKE_BUILD_TYPE) + message(FATAL_ERROR "Please, set the CMAKE_BUILD_TYPE variable when calling to CMake " + "adding the '-DCMAKE_BUILD_TYPE=' argument.") + endif() +endmacro() diff --git a/conan_toolchain.cmake b/conan_toolchain.cmake new file mode 100644 index 0000000..60548ef --- /dev/null +++ b/conan_toolchain.cmake @@ -0,0 +1,88 @@ + + +# Conan automatically generated toolchain file +# DO NOT EDIT MANUALLY, it will be overwritten + +# Avoid including toolchain file several times (bad if appending to variables like +# CMAKE_CXX_FLAGS. See https://github.com/android/ndk/issues/323 +include_guard() + +message(STATUS "Using Conan toolchain: ${CMAKE_CURRENT_LIST_FILE}") + +if(${CMAKE_VERSION} VERSION_LESS "3.15") + message(FATAL_ERROR "The 'CMakeToolchain' generator only works with CMake >= 3.15") +endif() + + + + + + + + + + +string(APPEND CONAN_CXX_FLAGS " -m64") +string(APPEND CONAN_C_FLAGS " -m64") +string(APPEND CONAN_SHARED_LINKER_FLAGS " -m64") +string(APPEND CONAN_EXE_LINKER_FLAGS " -m64") + + + +message(STATUS "Conan toolchain: C++ Standard 17 with extensions ON") +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_EXTENSIONS ON) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +# Extra c, cxx, linkflags and defines + + +if(DEFINED CONAN_CXX_FLAGS) + string(APPEND CMAKE_CXX_FLAGS_INIT " ${CONAN_CXX_FLAGS}") +endif() +if(DEFINED CONAN_C_FLAGS) + string(APPEND CMAKE_C_FLAGS_INIT " ${CONAN_C_FLAGS}") +endif() +if(DEFINED CONAN_SHARED_LINKER_FLAGS) + string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT " ${CONAN_SHARED_LINKER_FLAGS}") +endif() +if(DEFINED CONAN_EXE_LINKER_FLAGS) + string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT " ${CONAN_EXE_LINKER_FLAGS}") +endif() + +get_property( _CMAKE_IN_TRY_COMPILE GLOBAL PROPERTY IN_TRY_COMPILE ) +if(_CMAKE_IN_TRY_COMPILE) + message(STATUS "Running toolchain IN_TRY_COMPILE") + return() +endif() + +set(CMAKE_FIND_PACKAGE_PREFER_CONFIG ON) + +# Definition of CMAKE_MODULE_PATH +# the generators folder (where conan generates files, like this toolchain) +list(PREPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) + +# Definition of CMAKE_PREFIX_PATH, CMAKE_XXXXX_PATH +# The Conan local "generators" folder, where this toolchain is saved. +list(PREPEND CMAKE_PREFIX_PATH ${CMAKE_CURRENT_LIST_DIR} ) +list(PREPEND CMAKE_PROGRAM_PATH "/home/plex/.conan2/p/cmake5a09891eb5f57/p/bin") +list(PREPEND CMAKE_LIBRARY_PATH "/home/plex/.conan2/p/b/glfwdefb5f57f4bbb/p/lib") +list(PREPEND CMAKE_INCLUDE_PATH "/home/plex/.conan2/p/b/glfwdefb5f57f4bbb/p/include" "/usr/include/uuid") + + + +if (DEFINED ENV{PKG_CONFIG_PATH}) +set(ENV{PKG_CONFIG_PATH} "${CMAKE_CURRENT_LIST_DIR}:$ENV{PKG_CONFIG_PATH}") +else() +set(ENV{PKG_CONFIG_PATH} "${CMAKE_CURRENT_LIST_DIR}:") +endif() + + + + +# Variables +# Variables per configuration + + +# Preprocessor definitions +# Preprocessor definitions per configuration diff --git a/conanbuild.sh b/conanbuild.sh new file mode 100644 index 0000000..bee5503 --- /dev/null +++ b/conanbuild.sh @@ -0,0 +1 @@ +. "/home/plex/Documents/code/cpp/glsl-basic/conanbuildenv-release-x86_64.sh" \ No newline at end of file diff --git a/conanbuildenv-release-x86_64.sh b/conanbuildenv-release-x86_64.sh new file mode 100644 index 0000000..ad77cdc --- /dev/null +++ b/conanbuildenv-release-x86_64.sh @@ -0,0 +1,16 @@ +script_folder="/home/plex/Documents/code/cpp/glsl-basic" +echo "echo Restoring environment" > "$script_folder/deactivate_conanbuildenv-release-x86_64.sh" +for v in PATH +do + is_defined="true" + value=$(printenv $v) || is_defined="" || true + if [ -n "$value" ] || [ -n "$is_defined" ] + then + echo export "$v='$value'" >> "$script_folder/deactivate_conanbuildenv-release-x86_64.sh" + else + echo unset $v >> "$script_folder/deactivate_conanbuildenv-release-x86_64.sh" + fi +done + + +export PATH="/home/plex/.conan2/p/cmake5a09891eb5f57/p/bin:$PATH" \ No newline at end of file diff --git a/conanfile.txt b/conanfile.txt new file mode 100644 index 0000000..3e11c19 --- /dev/null +++ b/conanfile.txt @@ -0,0 +1,9 @@ +[requires] +glfw/3.3.8 + +[tool_requires] +cmake/3.22.6 + +[generators] +CMakeDeps +CMakeToolchain diff --git a/conanrun.sh b/conanrun.sh new file mode 100644 index 0000000..ce8c662 --- /dev/null +++ b/conanrun.sh @@ -0,0 +1 @@ +. "/home/plex/Documents/code/cpp/glsl-basic/conanrunenv-release-x86_64.sh" \ No newline at end of file diff --git a/conanrunenv-release-x86_64.sh b/conanrunenv-release-x86_64.sh new file mode 100644 index 0000000..f181cb5 --- /dev/null +++ b/conanrunenv-release-x86_64.sh @@ -0,0 +1,14 @@ +script_folder="/home/plex/Documents/code/cpp/glsl-basic" +echo "echo Restoring environment" > "$script_folder/deactivate_conanrunenv-release-x86_64.sh" +for v in +do + is_defined="true" + value=$(printenv $v) || is_defined="" || true + if [ -n "$value" ] || [ -n "$is_defined" ] + then + echo export "$v='$value'" >> "$script_folder/deactivate_conanrunenv-release-x86_64.sh" + else + echo unset $v >> "$script_folder/deactivate_conanrunenv-release-x86_64.sh" + fi +done + diff --git a/deactivate_conanbuild.sh b/deactivate_conanbuild.sh new file mode 100644 index 0000000..6d25d64 --- /dev/null +++ b/deactivate_conanbuild.sh @@ -0,0 +1 @@ +. "/home/plex/Documents/code/cpp/glsl-basic/deactivate_conanbuildenv-release-x86_64.sh" \ No newline at end of file diff --git a/deactivate_conanbuildenv-release-x86_64.sh b/deactivate_conanbuildenv-release-x86_64.sh new file mode 100644 index 0000000..e15fd02 --- /dev/null +++ b/deactivate_conanbuildenv-release-x86_64.sh @@ -0,0 +1,2 @@ +echo Restoring environment +export PATH='/usr/bin:/usr/sbin:/home/plex/.local/bin:/home/plex/.cargo/bin:/usr/local/bin' diff --git a/deactivate_conanrun.sh b/deactivate_conanrun.sh new file mode 100644 index 0000000..4943f28 --- /dev/null +++ b/deactivate_conanrun.sh @@ -0,0 +1 @@ +. "/home/plex/Documents/code/cpp/glsl-basic/deactivate_conanrunenv-release-x86_64.sh" \ No newline at end of file diff --git a/glfw3-Target-release.cmake b/glfw3-Target-release.cmake new file mode 100644 index 0000000..ca27a6f --- /dev/null +++ b/glfw3-Target-release.cmake @@ -0,0 +1,73 @@ +# Avoid multiple calls to find_package to append duplicated properties to the targets +include_guard()########### VARIABLES ####################################################################### +############################################################################################# +set(glfw_FRAMEWORKS_FOUND_RELEASE "") # Will be filled later +conan_find_apple_frameworks(glfw_FRAMEWORKS_FOUND_RELEASE "${glfw_FRAMEWORKS_RELEASE}" "${glfw_FRAMEWORK_DIRS_RELEASE}") + +set(glfw_LIBRARIES_TARGETS "") # Will be filled later + + +######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) +if(NOT TARGET glfw_DEPS_TARGET) + add_library(glfw_DEPS_TARGET INTERFACE IMPORTED) +endif() + +set_property(TARGET glfw_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${glfw_FRAMEWORKS_FOUND_RELEASE}> + $<$:${glfw_SYSTEM_LIBS_RELEASE}> + $<$:opengl::opengl;xorg::xorg> + APPEND) + +####### Find the libraries declared in cpp_info.libs, create an IMPORTED target for each one and link the +####### glfw_DEPS_TARGET to all of them +conan_package_library_targets("${glfw_LIBS_RELEASE}" # libraries + "${glfw_LIB_DIRS_RELEASE}" # package_libdir + "${glfw_BIN_DIRS_RELEASE}" # package_bindir + "${glfw_LIBRARY_TYPE_RELEASE}" + "${glfw_IS_HOST_WINDOWS_RELEASE}" + glfw_DEPS_TARGET + glfw_LIBRARIES_TARGETS # out_libraries_targets + "_RELEASE" + "glfw" # package_name + "${glfw_NO_SONAME_MODE_RELEASE}") # soname + +# FIXME: What is the result of this for multi-config? All configs adding themselves to path? +set(CMAKE_MODULE_PATH ${glfw_BUILD_DIRS_RELEASE} ${CMAKE_MODULE_PATH}) + +########## GLOBAL TARGET PROPERTIES Release ######################################## + set_property(TARGET glfw + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${glfw_OBJECTS_RELEASE}> + $<$:${glfw_LIBRARIES_TARGETS}> + APPEND) + + if("${glfw_LIBS_RELEASE}" STREQUAL "") + # If the package is not declaring any "cpp_info.libs" the package deps, system libs, + # frameworks etc are not linked to the imported targets and we need to do it to the + # global target + set_property(TARGET glfw + PROPERTY INTERFACE_LINK_LIBRARIES + glfw_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET glfw + PROPERTY INTERFACE_LINK_OPTIONS + $<$:${glfw_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET glfw + PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${glfw_INCLUDE_DIRS_RELEASE}> APPEND) + # Necessary to find LINK shared libraries in Linux + set_property(TARGET glfw + PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${glfw_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET glfw + PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${glfw_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET glfw + PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${glfw_COMPILE_OPTIONS_RELEASE}> APPEND) + +########## For the modules (FindXXX) +set(glfw_LIBRARIES_RELEASE glfw) diff --git a/glfw3-config-version.cmake b/glfw3-config-version.cmake new file mode 100644 index 0000000..d746b3a --- /dev/null +++ b/glfw3-config-version.cmake @@ -0,0 +1,21 @@ +set(PACKAGE_VERSION "3.3.8") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + if("3.3.8" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR ${CMAKE_MATCH_1}) + else() + set(CVF_VERSION_MAJOR "3.3.8") + endif() + + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() \ No newline at end of file diff --git a/glfw3-config.cmake b/glfw3-config.cmake new file mode 100644 index 0000000..db1982e --- /dev/null +++ b/glfw3-config.cmake @@ -0,0 +1,40 @@ +########## MACROS ########################################################################### +############################################################################################# + +# Requires CMake > 3.15 +if(${CMAKE_VERSION} VERSION_LESS "3.15") + message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.15") +endif() + +if(glfw3_FIND_QUIETLY) + set(glfw3_MESSAGE_MODE VERBOSE) +else() + set(glfw3_MESSAGE_MODE STATUS) +endif() + +include(${CMAKE_CURRENT_LIST_DIR}/cmakedeps_macros.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake) +include(CMakeFindDependencyMacro) + +check_build_type_defined() + +foreach(_DEPENDENCY ${glfw_FIND_DEPENDENCY_NAMES} ) + # Check that we have not already called a find_package with the transitive dependency + if(NOT ${_DEPENDENCY}_FOUND) + find_dependency(${_DEPENDENCY} REQUIRED ${${_DEPENDENCY}_FIND_MODE}) + endif() +endforeach() + +set(glfw3_VERSION_STRING "3.3.8") +set(glfw3_INCLUDE_DIRS ${glfw_INCLUDE_DIRS_RELEASE} ) +set(glfw3_INCLUDE_DIR ${glfw_INCLUDE_DIRS_RELEASE} ) +set(glfw3_LIBRARIES ${glfw_LIBRARIES_RELEASE} ) +set(glfw3_DEFINITIONS ${glfw_DEFINITIONS_RELEASE} ) + +# Only the first installed configuration is included to avoid the collision +foreach(_BUILD_MODULE ${glfw_BUILD_MODULES_PATHS_RELEASE} ) + message(${glfw3_MESSAGE_MODE} "Conan: Including build module from '${_BUILD_MODULE}'") + include(${_BUILD_MODULE}) +endforeach() + + diff --git a/glfw3-release-x86_64-data.cmake b/glfw3-release-x86_64-data.cmake new file mode 100644 index 0000000..783875c --- /dev/null +++ b/glfw3-release-x86_64-data.cmake @@ -0,0 +1,47 @@ +########### AGGREGATED COMPONENTS AND DEPENDENCIES FOR THE MULTI CONFIG ##################### +############################################################################################# + +set(glfw_COMPONENT_NAMES "") +list(APPEND glfw_FIND_DEPENDENCY_NAMES opengl_system xorg) +list(REMOVE_DUPLICATES glfw_FIND_DEPENDENCY_NAMES) +set(opengl_system_FIND_MODE "NO_MODULE") +set(xorg_FIND_MODE "NO_MODULE") + +########### VARIABLES ####################################################################### +############################################################################################# +set(glfw_PACKAGE_FOLDER_RELEASE "/home/plex/.conan2/p/b/glfwdefb5f57f4bbb/p") +set(glfw_BUILD_MODULES_PATHS_RELEASE ) + + +set(glfw_INCLUDE_DIRS_RELEASE "${glfw_PACKAGE_FOLDER_RELEASE}/include") +set(glfw_RES_DIRS_RELEASE ) +set(glfw_DEFINITIONS_RELEASE ) +set(glfw_SHARED_LINK_FLAGS_RELEASE ) +set(glfw_EXE_LINK_FLAGS_RELEASE ) +set(glfw_OBJECTS_RELEASE ) +set(glfw_COMPILE_DEFINITIONS_RELEASE ) +set(glfw_COMPILE_OPTIONS_C_RELEASE ) +set(glfw_COMPILE_OPTIONS_CXX_RELEASE ) +set(glfw_LIB_DIRS_RELEASE "${glfw_PACKAGE_FOLDER_RELEASE}/lib") +set(glfw_BIN_DIRS_RELEASE ) +set(glfw_LIBRARY_TYPE_RELEASE STATIC) +set(glfw_IS_HOST_WINDOWS_RELEASE 0) +set(glfw_LIBS_RELEASE glfw3) +set(glfw_SYSTEM_LIBS_RELEASE m pthread dl rt) +set(glfw_FRAMEWORK_DIRS_RELEASE ) +set(glfw_FRAMEWORKS_RELEASE ) +set(glfw_BUILD_DIRS_RELEASE ) +set(glfw_NO_SONAME_MODE_RELEASE FALSE) + + +# COMPOUND VARIABLES +set(glfw_COMPILE_OPTIONS_RELEASE + "$<$:${glfw_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${glfw_COMPILE_OPTIONS_C_RELEASE}>") +set(glfw_LINKER_FLAGS_RELEASE + "$<$,SHARED_LIBRARY>:${glfw_SHARED_LINK_FLAGS_RELEASE}>" + "$<$,MODULE_LIBRARY>:${glfw_SHARED_LINK_FLAGS_RELEASE}>" + "$<$,EXECUTABLE>:${glfw_EXE_LINK_FLAGS_RELEASE}>") + + +set(glfw_COMPONENTS_RELEASE ) \ No newline at end of file diff --git a/glfw3Targets.cmake b/glfw3Targets.cmake new file mode 100644 index 0000000..e365682 --- /dev/null +++ b/glfw3Targets.cmake @@ -0,0 +1,27 @@ +# Load the debug and release variables +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB DATA_FILES "${_DIR}/glfw3-*-data.cmake") + +foreach(f ${DATA_FILES}) + include(${f}) +endforeach() + +# Create the targets for all the components +foreach(_COMPONENT ${glfw_COMPONENT_NAMES} ) + if(NOT TARGET ${_COMPONENT}) + add_library(${_COMPONENT} INTERFACE IMPORTED) + message(${glfw3_MESSAGE_MODE} "Conan: Component target declared '${_COMPONENT}'") + endif() +endforeach() + +if(NOT TARGET glfw) + add_library(glfw INTERFACE IMPORTED) + message(${glfw3_MESSAGE_MODE} "Conan: Target declared 'glfw'") +endif() +# Load the debug and release library finders +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB CONFIG_FILES "${_DIR}/glfw3-Target-*.cmake") + +foreach(f ${CONFIG_FILES}) + include(${f}) +endforeach() \ No newline at end of file diff --git a/opengl_system-Target-release.cmake b/opengl_system-Target-release.cmake new file mode 100644 index 0000000..bf759a9 --- /dev/null +++ b/opengl_system-Target-release.cmake @@ -0,0 +1,73 @@ +# Avoid multiple calls to find_package to append duplicated properties to the targets +include_guard()########### VARIABLES ####################################################################### +############################################################################################# +set(opengl_FRAMEWORKS_FOUND_RELEASE "") # Will be filled later +conan_find_apple_frameworks(opengl_FRAMEWORKS_FOUND_RELEASE "${opengl_FRAMEWORKS_RELEASE}" "${opengl_FRAMEWORK_DIRS_RELEASE}") + +set(opengl_LIBRARIES_TARGETS "") # Will be filled later + + +######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) +if(NOT TARGET opengl_DEPS_TARGET) + add_library(opengl_DEPS_TARGET INTERFACE IMPORTED) +endif() + +set_property(TARGET opengl_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${opengl_FRAMEWORKS_FOUND_RELEASE}> + $<$:${opengl_SYSTEM_LIBS_RELEASE}> + $<$:> + APPEND) + +####### Find the libraries declared in cpp_info.libs, create an IMPORTED target for each one and link the +####### opengl_DEPS_TARGET to all of them +conan_package_library_targets("${opengl_LIBS_RELEASE}" # libraries + "${opengl_LIB_DIRS_RELEASE}" # package_libdir + "${opengl_BIN_DIRS_RELEASE}" # package_bindir + "${opengl_LIBRARY_TYPE_RELEASE}" + "${opengl_IS_HOST_WINDOWS_RELEASE}" + opengl_DEPS_TARGET + opengl_LIBRARIES_TARGETS # out_libraries_targets + "_RELEASE" + "opengl" # package_name + "${opengl_NO_SONAME_MODE_RELEASE}") # soname + +# FIXME: What is the result of this for multi-config? All configs adding themselves to path? +set(CMAKE_MODULE_PATH ${opengl_BUILD_DIRS_RELEASE} ${CMAKE_MODULE_PATH}) + +########## GLOBAL TARGET PROPERTIES Release ######################################## + set_property(TARGET opengl::opengl + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${opengl_OBJECTS_RELEASE}> + $<$:${opengl_LIBRARIES_TARGETS}> + APPEND) + + if("${opengl_LIBS_RELEASE}" STREQUAL "") + # If the package is not declaring any "cpp_info.libs" the package deps, system libs, + # frameworks etc are not linked to the imported targets and we need to do it to the + # global target + set_property(TARGET opengl::opengl + PROPERTY INTERFACE_LINK_LIBRARIES + opengl_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET opengl::opengl + PROPERTY INTERFACE_LINK_OPTIONS + $<$:${opengl_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET opengl::opengl + PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${opengl_INCLUDE_DIRS_RELEASE}> APPEND) + # Necessary to find LINK shared libraries in Linux + set_property(TARGET opengl::opengl + PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${opengl_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET opengl::opengl + PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${opengl_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET opengl::opengl + PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${opengl_COMPILE_OPTIONS_RELEASE}> APPEND) + +########## For the modules (FindXXX) +set(opengl_LIBRARIES_RELEASE opengl::opengl) diff --git a/opengl_system-config-version.cmake b/opengl_system-config-version.cmake new file mode 100644 index 0000000..805ae66 --- /dev/null +++ b/opengl_system-config-version.cmake @@ -0,0 +1,21 @@ +set(PACKAGE_VERSION "system") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + if("system" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR ${CMAKE_MATCH_1}) + else() + set(CVF_VERSION_MAJOR "system") + endif() + + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() \ No newline at end of file diff --git a/opengl_system-config.cmake b/opengl_system-config.cmake new file mode 100644 index 0000000..5cf9a8a --- /dev/null +++ b/opengl_system-config.cmake @@ -0,0 +1,40 @@ +########## MACROS ########################################################################### +############################################################################################# + +# Requires CMake > 3.15 +if(${CMAKE_VERSION} VERSION_LESS "3.15") + message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.15") +endif() + +if(opengl_system_FIND_QUIETLY) + set(opengl_system_MESSAGE_MODE VERBOSE) +else() + set(opengl_system_MESSAGE_MODE STATUS) +endif() + +include(${CMAKE_CURRENT_LIST_DIR}/cmakedeps_macros.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/opengl_systemTargets.cmake) +include(CMakeFindDependencyMacro) + +check_build_type_defined() + +foreach(_DEPENDENCY ${opengl_FIND_DEPENDENCY_NAMES} ) + # Check that we have not already called a find_package with the transitive dependency + if(NOT ${_DEPENDENCY}_FOUND) + find_dependency(${_DEPENDENCY} REQUIRED ${${_DEPENDENCY}_FIND_MODE}) + endif() +endforeach() + +set(opengl_system_VERSION_STRING "system") +set(opengl_system_INCLUDE_DIRS ${opengl_INCLUDE_DIRS_RELEASE} ) +set(opengl_system_INCLUDE_DIR ${opengl_INCLUDE_DIRS_RELEASE} ) +set(opengl_system_LIBRARIES ${opengl_LIBRARIES_RELEASE} ) +set(opengl_system_DEFINITIONS ${opengl_DEFINITIONS_RELEASE} ) + +# Only the first installed configuration is included to avoid the collision +foreach(_BUILD_MODULE ${opengl_BUILD_MODULES_PATHS_RELEASE} ) + message(${opengl_system_MESSAGE_MODE} "Conan: Including build module from '${_BUILD_MODULE}'") + include(${_BUILD_MODULE}) +endforeach() + + diff --git a/opengl_system-release-x86_64-data.cmake b/opengl_system-release-x86_64-data.cmake new file mode 100644 index 0000000..16beb64 --- /dev/null +++ b/opengl_system-release-x86_64-data.cmake @@ -0,0 +1,44 @@ +########### AGGREGATED COMPONENTS AND DEPENDENCIES FOR THE MULTI CONFIG ##################### +############################################################################################# + +set(opengl_COMPONENT_NAMES "") +set(opengl_FIND_DEPENDENCY_NAMES "") + +########### VARIABLES ####################################################################### +############################################################################################# +set(opengl_PACKAGE_FOLDER_RELEASE "/home/plex/.conan2/p/openg64faf4cf4ac21/p") +set(opengl_BUILD_MODULES_PATHS_RELEASE ) + + +set(opengl_INCLUDE_DIRS_RELEASE ) +set(opengl_RES_DIRS_RELEASE ) +set(opengl_DEFINITIONS_RELEASE ) +set(opengl_SHARED_LINK_FLAGS_RELEASE ) +set(opengl_EXE_LINK_FLAGS_RELEASE ) +set(opengl_OBJECTS_RELEASE ) +set(opengl_COMPILE_DEFINITIONS_RELEASE ) +set(opengl_COMPILE_OPTIONS_C_RELEASE ) +set(opengl_COMPILE_OPTIONS_CXX_RELEASE ) +set(opengl_LIB_DIRS_RELEASE ) +set(opengl_BIN_DIRS_RELEASE ) +set(opengl_LIBRARY_TYPE_RELEASE SHARED) +set(opengl_IS_HOST_WINDOWS_RELEASE 0) +set(opengl_LIBS_RELEASE ) +set(opengl_SYSTEM_LIBS_RELEASE GL) +set(opengl_FRAMEWORK_DIRS_RELEASE ) +set(opengl_FRAMEWORKS_RELEASE ) +set(opengl_BUILD_DIRS_RELEASE ) +set(opengl_NO_SONAME_MODE_RELEASE FALSE) + + +# COMPOUND VARIABLES +set(opengl_COMPILE_OPTIONS_RELEASE + "$<$:${opengl_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${opengl_COMPILE_OPTIONS_C_RELEASE}>") +set(opengl_LINKER_FLAGS_RELEASE + "$<$,SHARED_LIBRARY>:${opengl_SHARED_LINK_FLAGS_RELEASE}>" + "$<$,MODULE_LIBRARY>:${opengl_SHARED_LINK_FLAGS_RELEASE}>" + "$<$,EXECUTABLE>:${opengl_EXE_LINK_FLAGS_RELEASE}>") + + +set(opengl_COMPONENTS_RELEASE ) \ No newline at end of file diff --git a/opengl_systemTargets.cmake b/opengl_systemTargets.cmake new file mode 100644 index 0000000..cedd917 --- /dev/null +++ b/opengl_systemTargets.cmake @@ -0,0 +1,27 @@ +# Load the debug and release variables +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB DATA_FILES "${_DIR}/opengl_system-*-data.cmake") + +foreach(f ${DATA_FILES}) + include(${f}) +endforeach() + +# Create the targets for all the components +foreach(_COMPONENT ${opengl_COMPONENT_NAMES} ) + if(NOT TARGET ${_COMPONENT}) + add_library(${_COMPONENT} INTERFACE IMPORTED) + message(${opengl_system_MESSAGE_MODE} "Conan: Component target declared '${_COMPONENT}'") + endif() +endforeach() + +if(NOT TARGET opengl::opengl) + add_library(opengl::opengl INTERFACE IMPORTED) + message(${opengl_system_MESSAGE_MODE} "Conan: Target declared 'opengl::opengl'") +endif() +# Load the debug and release library finders +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB CONFIG_FILES "${_DIR}/opengl_system-Target-*.cmake") + +foreach(f ${CONFIG_FILES}) + include(${f}) +endforeach() \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..32c2c97 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,12 @@ +#include "glsl-basic.h" +#include +#include + +int main() { + glsl_basic(); + + std::vector vec; + vec.push_back("test_package"); + + glsl_basic_print_vector(vec); +} diff --git a/xorg-Target-release.cmake b/xorg-Target-release.cmake new file mode 100644 index 0000000..9a7340e --- /dev/null +++ b/xorg-Target-release.cmake @@ -0,0 +1,2971 @@ +# Avoid multiple calls to find_package to append duplicated properties to the targets +include_guard()########### VARIABLES ####################################################################### +############################################################################################# +set(xorg_FRAMEWORKS_FOUND_RELEASE "") # Will be filled later +conan_find_apple_frameworks(xorg_FRAMEWORKS_FOUND_RELEASE "${xorg_FRAMEWORKS_RELEASE}" "${xorg_FRAMEWORK_DIRS_RELEASE}") + +set(xorg_LIBRARIES_TARGETS "") # Will be filled later + + +######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) +if(NOT TARGET xorg_DEPS_TARGET) + add_library(xorg_DEPS_TARGET INTERFACE IMPORTED) +endif() + +set_property(TARGET xorg_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_SYSTEM_LIBS_RELEASE}> + $<$:xorg::uuid> + APPEND) + +####### Find the libraries declared in cpp_info.libs, create an IMPORTED target for each one and link the +####### xorg_DEPS_TARGET to all of them +conan_package_library_targets("${xorg_LIBS_RELEASE}" # libraries + "${xorg_LIB_DIRS_RELEASE}" # package_libdir + "${xorg_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_LIBRARY_TYPE_RELEASE}" + "${xorg_IS_HOST_WINDOWS_RELEASE}" + xorg_DEPS_TARGET + xorg_LIBRARIES_TARGETS # out_libraries_targets + "_RELEASE" + "xorg" # package_name + "${xorg_NO_SONAME_MODE_RELEASE}") # soname + +# FIXME: What is the result of this for multi-config? All configs adding themselves to path? +set(CMAKE_MODULE_PATH ${xorg_BUILD_DIRS_RELEASE} ${CMAKE_MODULE_PATH}) + +########## COMPONENTS TARGET PROPERTIES Release ######################################## + + ########## COMPONENT xorg::sm ############# + + set(xorg_xorg_sm_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_sm_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_sm_FRAMEWORKS_RELEASE}" "${xorg_xorg_sm_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_sm_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_sm_DEPS_TARGET) + add_library(xorg_xorg_sm_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_sm_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_sm_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_sm_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_sm_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_sm_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_sm_LIBS_RELEASE}" + "${xorg_xorg_sm_LIB_DIRS_RELEASE}" + "${xorg_xorg_sm_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_sm_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_sm_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_sm_DEPS_TARGET + xorg_xorg_sm_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_sm" + "${xorg_xorg_sm_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::sm + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_sm_OBJECTS_RELEASE}> + $<$:${xorg_xorg_sm_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_sm_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::sm + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_sm_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::sm PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_sm_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::sm PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_sm_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::sm PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_sm_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::sm PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_sm_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::sm PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_sm_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::uuid ############# + + set(xorg_xorg_uuid_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_uuid_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_uuid_FRAMEWORKS_RELEASE}" "${xorg_xorg_uuid_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_uuid_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_uuid_DEPS_TARGET) + add_library(xorg_xorg_uuid_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_uuid_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_uuid_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_uuid_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_uuid_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_uuid_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_uuid_LIBS_RELEASE}" + "${xorg_xorg_uuid_LIB_DIRS_RELEASE}" + "${xorg_xorg_uuid_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_uuid_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_uuid_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_uuid_DEPS_TARGET + xorg_xorg_uuid_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_uuid" + "${xorg_xorg_uuid_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::uuid + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_uuid_OBJECTS_RELEASE}> + $<$:${xorg_xorg_uuid_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_uuid_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::uuid + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_uuid_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::uuid PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_uuid_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::uuid PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_uuid_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::uuid PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_uuid_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::uuid PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_uuid_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::uuid PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_uuid_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-cursor ############# + + set(xorg_xorg_xcb-cursor_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-cursor_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-cursor_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-cursor_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-cursor_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-cursor_DEPS_TARGET) + add_library(xorg_xorg_xcb-cursor_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-cursor_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-cursor_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-cursor_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-cursor_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-cursor_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-cursor_LIBS_RELEASE}" + "${xorg_xorg_xcb-cursor_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-cursor_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-cursor_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-cursor_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-cursor_DEPS_TARGET + xorg_xorg_xcb-cursor_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-cursor" + "${xorg_xorg_xcb-cursor_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-cursor + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-cursor_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-cursor_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-cursor_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-cursor + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-cursor_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-cursor PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-cursor_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-cursor PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-cursor_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-cursor PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-cursor_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-cursor PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-cursor_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-cursor PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-cursor_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-dri3 ############# + + set(xorg_xorg_xcb-dri3_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-dri3_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-dri3_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-dri3_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-dri3_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-dri3_DEPS_TARGET) + add_library(xorg_xorg_xcb-dri3_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-dri3_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-dri3_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-dri3_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-dri3_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-dri3_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-dri3_LIBS_RELEASE}" + "${xorg_xorg_xcb-dri3_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-dri3_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-dri3_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-dri3_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-dri3_DEPS_TARGET + xorg_xorg_xcb-dri3_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-dri3" + "${xorg_xorg_xcb-dri3_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-dri3 + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-dri3_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-dri3_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-dri3_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-dri3 + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-dri3_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-dri3 PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-dri3_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-dri3 PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-dri3_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-dri3 PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-dri3_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-dri3 PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-dri3_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-dri3 PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-dri3_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-util ############# + + set(xorg_xorg_xcb-util_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-util_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-util_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-util_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-util_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-util_DEPS_TARGET) + add_library(xorg_xorg_xcb-util_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-util_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-util_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-util_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-util_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-util_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-util_LIBS_RELEASE}" + "${xorg_xorg_xcb-util_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-util_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-util_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-util_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-util_DEPS_TARGET + xorg_xorg_xcb-util_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-util" + "${xorg_xorg_xcb-util_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-util + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-util_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-util_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-util_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-util + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-util_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-util PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-util_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-util PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-util_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-util PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-util_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-util PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-util_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-util PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-util_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-event ############# + + set(xorg_xorg_xcb-event_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-event_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-event_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-event_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-event_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-event_DEPS_TARGET) + add_library(xorg_xorg_xcb-event_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-event_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-event_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-event_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-event_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-event_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-event_LIBS_RELEASE}" + "${xorg_xorg_xcb-event_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-event_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-event_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-event_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-event_DEPS_TARGET + xorg_xorg_xcb-event_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-event" + "${xorg_xorg_xcb-event_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-event + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-event_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-event_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-event_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-event + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-event_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-event PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-event_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-event PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-event_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-event PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-event_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-event PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-event_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-event PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-event_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-aux ############# + + set(xorg_xorg_xcb-aux_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-aux_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-aux_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-aux_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-aux_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-aux_DEPS_TARGET) + add_library(xorg_xorg_xcb-aux_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-aux_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-aux_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-aux_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-aux_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-aux_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-aux_LIBS_RELEASE}" + "${xorg_xorg_xcb-aux_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-aux_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-aux_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-aux_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-aux_DEPS_TARGET + xorg_xorg_xcb-aux_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-aux" + "${xorg_xorg_xcb-aux_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-aux + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-aux_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-aux_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-aux_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-aux + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-aux_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-aux PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-aux_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-aux PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-aux_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-aux PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-aux_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-aux PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-aux_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-aux PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-aux_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-atom ############# + + set(xorg_xorg_xcb-atom_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-atom_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-atom_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-atom_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-atom_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-atom_DEPS_TARGET) + add_library(xorg_xorg_xcb-atom_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-atom_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-atom_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-atom_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-atom_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-atom_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-atom_LIBS_RELEASE}" + "${xorg_xorg_xcb-atom_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-atom_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-atom_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-atom_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-atom_DEPS_TARGET + xorg_xorg_xcb-atom_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-atom" + "${xorg_xorg_xcb-atom_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-atom + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-atom_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-atom_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-atom_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-atom + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-atom_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-atom PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-atom_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-atom PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-atom_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-atom PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-atom_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-atom PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-atom_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-atom PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-atom_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb ############# + + set(xorg_xorg_xcb_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb_DEPS_TARGET) + add_library(xorg_xorg_xcb_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb_LIBS_RELEASE}" + "${xorg_xorg_xcb_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb_DEPS_TARGET + xorg_xorg_xcb_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb" + "${xorg_xorg_xcb_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-xinerama ############# + + set(xorg_xorg_xcb-xinerama_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-xinerama_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-xinerama_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-xinerama_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-xinerama_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-xinerama_DEPS_TARGET) + add_library(xorg_xorg_xcb-xinerama_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-xinerama_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-xinerama_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-xinerama_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-xinerama_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-xinerama_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-xinerama_LIBS_RELEASE}" + "${xorg_xorg_xcb-xinerama_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-xinerama_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-xinerama_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-xinerama_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-xinerama_DEPS_TARGET + xorg_xorg_xcb-xinerama_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-xinerama" + "${xorg_xorg_xcb-xinerama_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-xinerama + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-xinerama_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-xinerama_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-xinerama_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-xinerama + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-xinerama_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-xinerama PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-xinerama_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xinerama PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-xinerama_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xinerama PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-xinerama_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xinerama PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-xinerama_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xinerama PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-xinerama_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-xfixes ############# + + set(xorg_xorg_xcb-xfixes_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-xfixes_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-xfixes_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-xfixes_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-xfixes_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-xfixes_DEPS_TARGET) + add_library(xorg_xorg_xcb-xfixes_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-xfixes_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-xfixes_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-xfixes_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-xfixes_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-xfixes_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-xfixes_LIBS_RELEASE}" + "${xorg_xorg_xcb-xfixes_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-xfixes_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-xfixes_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-xfixes_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-xfixes_DEPS_TARGET + xorg_xorg_xcb-xfixes_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-xfixes" + "${xorg_xorg_xcb-xfixes_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-xfixes + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-xfixes_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-xfixes_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-xfixes_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-xfixes + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-xfixes_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-xfixes PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-xfixes_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xfixes PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-xfixes_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xfixes PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-xfixes_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xfixes PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-xfixes_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xfixes PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-xfixes_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-sync ############# + + set(xorg_xorg_xcb-sync_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-sync_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-sync_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-sync_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-sync_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-sync_DEPS_TARGET) + add_library(xorg_xorg_xcb-sync_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-sync_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-sync_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-sync_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-sync_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-sync_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-sync_LIBS_RELEASE}" + "${xorg_xorg_xcb-sync_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-sync_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-sync_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-sync_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-sync_DEPS_TARGET + xorg_xorg_xcb-sync_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-sync" + "${xorg_xorg_xcb-sync_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-sync + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-sync_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-sync_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-sync_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-sync + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-sync_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-sync PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-sync_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-sync PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-sync_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-sync PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-sync_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-sync PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-sync_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-sync PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-sync_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-shm ############# + + set(xorg_xorg_xcb-shm_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-shm_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-shm_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-shm_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-shm_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-shm_DEPS_TARGET) + add_library(xorg_xorg_xcb-shm_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-shm_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-shm_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-shm_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-shm_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-shm_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-shm_LIBS_RELEASE}" + "${xorg_xorg_xcb-shm_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-shm_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-shm_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-shm_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-shm_DEPS_TARGET + xorg_xorg_xcb-shm_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-shm" + "${xorg_xorg_xcb-shm_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-shm + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-shm_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-shm_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-shm_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-shm + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-shm_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-shm PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-shm_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-shm PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-shm_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-shm PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-shm_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-shm PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-shm_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-shm PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-shm_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-shape ############# + + set(xorg_xorg_xcb-shape_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-shape_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-shape_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-shape_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-shape_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-shape_DEPS_TARGET) + add_library(xorg_xorg_xcb-shape_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-shape_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-shape_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-shape_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-shape_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-shape_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-shape_LIBS_RELEASE}" + "${xorg_xorg_xcb-shape_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-shape_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-shape_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-shape_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-shape_DEPS_TARGET + xorg_xorg_xcb-shape_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-shape" + "${xorg_xorg_xcb-shape_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-shape + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-shape_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-shape_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-shape_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-shape + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-shape_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-shape PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-shape_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-shape PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-shape_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-shape PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-shape_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-shape PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-shape_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-shape PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-shape_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-renderutil ############# + + set(xorg_xorg_xcb-renderutil_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-renderutil_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-renderutil_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-renderutil_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-renderutil_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-renderutil_DEPS_TARGET) + add_library(xorg_xorg_xcb-renderutil_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-renderutil_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-renderutil_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-renderutil_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-renderutil_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-renderutil_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-renderutil_LIBS_RELEASE}" + "${xorg_xorg_xcb-renderutil_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-renderutil_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-renderutil_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-renderutil_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-renderutil_DEPS_TARGET + xorg_xorg_xcb-renderutil_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-renderutil" + "${xorg_xorg_xcb-renderutil_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-renderutil + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-renderutil_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-renderutil_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-renderutil_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-renderutil + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-renderutil_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-renderutil PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-renderutil_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-renderutil PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-renderutil_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-renderutil PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-renderutil_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-renderutil PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-renderutil_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-renderutil PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-renderutil_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-render ############# + + set(xorg_xorg_xcb-render_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-render_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-render_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-render_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-render_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-render_DEPS_TARGET) + add_library(xorg_xorg_xcb-render_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-render_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-render_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-render_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-render_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-render_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-render_LIBS_RELEASE}" + "${xorg_xorg_xcb-render_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-render_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-render_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-render_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-render_DEPS_TARGET + xorg_xorg_xcb-render_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-render" + "${xorg_xorg_xcb-render_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-render + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-render_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-render_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-render_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-render + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-render_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-render PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-render_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-render PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-render_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-render PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-render_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-render PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-render_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-render PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-render_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-randr ############# + + set(xorg_xorg_xcb-randr_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-randr_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-randr_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-randr_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-randr_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-randr_DEPS_TARGET) + add_library(xorg_xorg_xcb-randr_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-randr_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-randr_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-randr_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-randr_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-randr_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-randr_LIBS_RELEASE}" + "${xorg_xorg_xcb-randr_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-randr_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-randr_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-randr_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-randr_DEPS_TARGET + xorg_xorg_xcb-randr_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-randr" + "${xorg_xorg_xcb-randr_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-randr + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-randr_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-randr_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-randr_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-randr + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-randr_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-randr PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-randr_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-randr PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-randr_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-randr PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-randr_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-randr PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-randr_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-randr PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-randr_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-keysyms ############# + + set(xorg_xorg_xcb-keysyms_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-keysyms_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-keysyms_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-keysyms_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-keysyms_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-keysyms_DEPS_TARGET) + add_library(xorg_xorg_xcb-keysyms_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-keysyms_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-keysyms_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-keysyms_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-keysyms_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-keysyms_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-keysyms_LIBS_RELEASE}" + "${xorg_xorg_xcb-keysyms_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-keysyms_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-keysyms_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-keysyms_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-keysyms_DEPS_TARGET + xorg_xorg_xcb-keysyms_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-keysyms" + "${xorg_xorg_xcb-keysyms_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-keysyms + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-keysyms_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-keysyms_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-keysyms_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-keysyms + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-keysyms_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-keysyms PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-keysyms_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-keysyms PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-keysyms_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-keysyms PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-keysyms_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-keysyms PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-keysyms_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-keysyms PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-keysyms_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-image ############# + + set(xorg_xorg_xcb-image_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-image_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-image_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-image_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-image_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-image_DEPS_TARGET) + add_library(xorg_xorg_xcb-image_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-image_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-image_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-image_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-image_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-image_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-image_LIBS_RELEASE}" + "${xorg_xorg_xcb-image_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-image_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-image_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-image_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-image_DEPS_TARGET + xorg_xorg_xcb-image_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-image" + "${xorg_xorg_xcb-image_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-image + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-image_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-image_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-image_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-image + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-image_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-image PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-image_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-image PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-image_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-image PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-image_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-image PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-image_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-image PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-image_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-icccm ############# + + set(xorg_xorg_xcb-icccm_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-icccm_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-icccm_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-icccm_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-icccm_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-icccm_DEPS_TARGET) + add_library(xorg_xorg_xcb-icccm_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-icccm_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-icccm_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-icccm_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-icccm_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-icccm_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-icccm_LIBS_RELEASE}" + "${xorg_xorg_xcb-icccm_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-icccm_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-icccm_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-icccm_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-icccm_DEPS_TARGET + xorg_xorg_xcb-icccm_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-icccm" + "${xorg_xorg_xcb-icccm_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-icccm + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-icccm_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-icccm_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-icccm_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-icccm + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-icccm_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-icccm PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-icccm_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-icccm PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-icccm_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-icccm PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-icccm_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-icccm PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-icccm_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-icccm PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-icccm_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcb-xkb ############# + + set(xorg_xorg_xcb-xkb_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcb-xkb_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcb-xkb_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcb-xkb_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcb-xkb_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcb-xkb_DEPS_TARGET) + add_library(xorg_xorg_xcb-xkb_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcb-xkb_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-xkb_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcb-xkb_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcb-xkb_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcb-xkb_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcb-xkb_LIBS_RELEASE}" + "${xorg_xorg_xcb-xkb_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcb-xkb_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcb-xkb_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcb-xkb_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcb-xkb_DEPS_TARGET + xorg_xorg_xcb-xkb_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcb-xkb" + "${xorg_xorg_xcb-xkb_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcb-xkb + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcb-xkb_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcb-xkb_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcb-xkb_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcb-xkb + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcb-xkb_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcb-xkb PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcb-xkb_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xkb PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcb-xkb_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xkb PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcb-xkb_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xkb PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcb-xkb_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcb-xkb PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcb-xkb_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xxf86vm ############# + + set(xorg_xorg_xxf86vm_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xxf86vm_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xxf86vm_FRAMEWORKS_RELEASE}" "${xorg_xorg_xxf86vm_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xxf86vm_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xxf86vm_DEPS_TARGET) + add_library(xorg_xorg_xxf86vm_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xxf86vm_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xxf86vm_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xxf86vm_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xxf86vm_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xxf86vm_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xxf86vm_LIBS_RELEASE}" + "${xorg_xorg_xxf86vm_LIB_DIRS_RELEASE}" + "${xorg_xorg_xxf86vm_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xxf86vm_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xxf86vm_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xxf86vm_DEPS_TARGET + xorg_xorg_xxf86vm_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xxf86vm" + "${xorg_xorg_xxf86vm_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xxf86vm + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xxf86vm_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xxf86vm_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xxf86vm_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xxf86vm + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xxf86vm_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xxf86vm PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xxf86vm_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xxf86vm PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xxf86vm_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xxf86vm PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xxf86vm_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xxf86vm PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xxf86vm_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xxf86vm PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xxf86vm_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xvmc ############# + + set(xorg_xorg_xvmc_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xvmc_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xvmc_FRAMEWORKS_RELEASE}" "${xorg_xorg_xvmc_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xvmc_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xvmc_DEPS_TARGET) + add_library(xorg_xorg_xvmc_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xvmc_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xvmc_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xvmc_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xvmc_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xvmc_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xvmc_LIBS_RELEASE}" + "${xorg_xorg_xvmc_LIB_DIRS_RELEASE}" + "${xorg_xorg_xvmc_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xvmc_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xvmc_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xvmc_DEPS_TARGET + xorg_xorg_xvmc_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xvmc" + "${xorg_xorg_xvmc_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xvmc + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xvmc_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xvmc_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xvmc_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xvmc + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xvmc_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xvmc PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xvmc_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xvmc PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xvmc_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xvmc PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xvmc_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xvmc PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xvmc_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xvmc PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xvmc_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xv ############# + + set(xorg_xorg_xv_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xv_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xv_FRAMEWORKS_RELEASE}" "${xorg_xorg_xv_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xv_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xv_DEPS_TARGET) + add_library(xorg_xorg_xv_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xv_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xv_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xv_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xv_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xv_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xv_LIBS_RELEASE}" + "${xorg_xorg_xv_LIB_DIRS_RELEASE}" + "${xorg_xorg_xv_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xv_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xv_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xv_DEPS_TARGET + xorg_xorg_xv_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xv" + "${xorg_xorg_xv_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xv + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xv_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xv_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xv_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xv + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xv_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xv PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xv_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xv PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xv_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xv PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xv_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xv PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xv_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xv PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xv_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xtst ############# + + set(xorg_xorg_xtst_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xtst_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xtst_FRAMEWORKS_RELEASE}" "${xorg_xorg_xtst_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xtst_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xtst_DEPS_TARGET) + add_library(xorg_xorg_xtst_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xtst_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xtst_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xtst_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xtst_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xtst_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xtst_LIBS_RELEASE}" + "${xorg_xorg_xtst_LIB_DIRS_RELEASE}" + "${xorg_xorg_xtst_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xtst_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xtst_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xtst_DEPS_TARGET + xorg_xorg_xtst_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xtst" + "${xorg_xorg_xtst_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xtst + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xtst_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xtst_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xtst_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xtst + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xtst_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xtst PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xtst_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xtst PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xtst_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xtst PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xtst_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xtst PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xtst_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xtst PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xtst_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xt ############# + + set(xorg_xorg_xt_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xt_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xt_FRAMEWORKS_RELEASE}" "${xorg_xorg_xt_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xt_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xt_DEPS_TARGET) + add_library(xorg_xorg_xt_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xt_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xt_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xt_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xt_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xt_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xt_LIBS_RELEASE}" + "${xorg_xorg_xt_LIB_DIRS_RELEASE}" + "${xorg_xorg_xt_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xt_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xt_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xt_DEPS_TARGET + xorg_xorg_xt_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xt" + "${xorg_xorg_xt_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xt + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xt_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xt_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xt_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xt + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xt_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xt PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xt_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xt PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xt_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xt PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xt_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xt PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xt_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xt PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xt_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xscrnsaver ############# + + set(xorg_xorg_xscrnsaver_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xscrnsaver_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xscrnsaver_FRAMEWORKS_RELEASE}" "${xorg_xorg_xscrnsaver_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xscrnsaver_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xscrnsaver_DEPS_TARGET) + add_library(xorg_xorg_xscrnsaver_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xscrnsaver_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xscrnsaver_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xscrnsaver_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xscrnsaver_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xscrnsaver_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xscrnsaver_LIBS_RELEASE}" + "${xorg_xorg_xscrnsaver_LIB_DIRS_RELEASE}" + "${xorg_xorg_xscrnsaver_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xscrnsaver_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xscrnsaver_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xscrnsaver_DEPS_TARGET + xorg_xorg_xscrnsaver_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xscrnsaver" + "${xorg_xorg_xscrnsaver_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xscrnsaver + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xscrnsaver_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xscrnsaver_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xscrnsaver_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xscrnsaver + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xscrnsaver_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xscrnsaver PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xscrnsaver_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xscrnsaver PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xscrnsaver_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xscrnsaver PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xscrnsaver_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xscrnsaver PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xscrnsaver_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xscrnsaver PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xscrnsaver_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xres ############# + + set(xorg_xorg_xres_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xres_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xres_FRAMEWORKS_RELEASE}" "${xorg_xorg_xres_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xres_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xres_DEPS_TARGET) + add_library(xorg_xorg_xres_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xres_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xres_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xres_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xres_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xres_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xres_LIBS_RELEASE}" + "${xorg_xorg_xres_LIB_DIRS_RELEASE}" + "${xorg_xorg_xres_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xres_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xres_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xres_DEPS_TARGET + xorg_xorg_xres_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xres" + "${xorg_xorg_xres_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xres + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xres_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xres_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xres_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xres + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xres_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xres PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xres_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xres PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xres_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xres PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xres_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xres PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xres_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xres PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xres_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xrender ############# + + set(xorg_xorg_xrender_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xrender_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xrender_FRAMEWORKS_RELEASE}" "${xorg_xorg_xrender_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xrender_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xrender_DEPS_TARGET) + add_library(xorg_xorg_xrender_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xrender_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xrender_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xrender_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xrender_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xrender_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xrender_LIBS_RELEASE}" + "${xorg_xorg_xrender_LIB_DIRS_RELEASE}" + "${xorg_xorg_xrender_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xrender_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xrender_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xrender_DEPS_TARGET + xorg_xorg_xrender_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xrender" + "${xorg_xorg_xrender_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xrender + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xrender_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xrender_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xrender_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xrender + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xrender_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xrender PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xrender_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xrender PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xrender_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xrender PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xrender_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xrender PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xrender_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xrender PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xrender_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xrandr ############# + + set(xorg_xorg_xrandr_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xrandr_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xrandr_FRAMEWORKS_RELEASE}" "${xorg_xorg_xrandr_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xrandr_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xrandr_DEPS_TARGET) + add_library(xorg_xorg_xrandr_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xrandr_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xrandr_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xrandr_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xrandr_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xrandr_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xrandr_LIBS_RELEASE}" + "${xorg_xorg_xrandr_LIB_DIRS_RELEASE}" + "${xorg_xorg_xrandr_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xrandr_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xrandr_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xrandr_DEPS_TARGET + xorg_xorg_xrandr_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xrandr" + "${xorg_xorg_xrandr_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xrandr + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xrandr_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xrandr_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xrandr_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xrandr + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xrandr_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xrandr PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xrandr_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xrandr PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xrandr_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xrandr PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xrandr_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xrandr PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xrandr_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xrandr PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xrandr_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xpm ############# + + set(xorg_xorg_xpm_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xpm_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xpm_FRAMEWORKS_RELEASE}" "${xorg_xorg_xpm_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xpm_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xpm_DEPS_TARGET) + add_library(xorg_xorg_xpm_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xpm_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xpm_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xpm_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xpm_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xpm_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xpm_LIBS_RELEASE}" + "${xorg_xorg_xpm_LIB_DIRS_RELEASE}" + "${xorg_xorg_xpm_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xpm_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xpm_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xpm_DEPS_TARGET + xorg_xorg_xpm_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xpm" + "${xorg_xorg_xpm_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xpm + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xpm_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xpm_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xpm_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xpm + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xpm_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xpm PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xpm_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xpm PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xpm_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xpm PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xpm_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xpm PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xpm_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xpm PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xpm_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xmuu ############# + + set(xorg_xorg_xmuu_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xmuu_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xmuu_FRAMEWORKS_RELEASE}" "${xorg_xorg_xmuu_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xmuu_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xmuu_DEPS_TARGET) + add_library(xorg_xorg_xmuu_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xmuu_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xmuu_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xmuu_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xmuu_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xmuu_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xmuu_LIBS_RELEASE}" + "${xorg_xorg_xmuu_LIB_DIRS_RELEASE}" + "${xorg_xorg_xmuu_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xmuu_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xmuu_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xmuu_DEPS_TARGET + xorg_xorg_xmuu_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xmuu" + "${xorg_xorg_xmuu_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xmuu + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xmuu_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xmuu_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xmuu_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xmuu + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xmuu_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xmuu PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xmuu_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xmuu PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xmuu_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xmuu PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xmuu_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xmuu PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xmuu_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xmuu PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xmuu_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xmu ############# + + set(xorg_xorg_xmu_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xmu_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xmu_FRAMEWORKS_RELEASE}" "${xorg_xorg_xmu_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xmu_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xmu_DEPS_TARGET) + add_library(xorg_xorg_xmu_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xmu_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xmu_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xmu_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xmu_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xmu_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xmu_LIBS_RELEASE}" + "${xorg_xorg_xmu_LIB_DIRS_RELEASE}" + "${xorg_xorg_xmu_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xmu_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xmu_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xmu_DEPS_TARGET + xorg_xorg_xmu_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xmu" + "${xorg_xorg_xmu_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xmu + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xmu_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xmu_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xmu_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xmu + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xmu_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xmu PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xmu_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xmu PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xmu_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xmu PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xmu_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xmu PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xmu_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xmu PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xmu_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xkbfile ############# + + set(xorg_xorg_xkbfile_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xkbfile_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xkbfile_FRAMEWORKS_RELEASE}" "${xorg_xorg_xkbfile_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xkbfile_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xkbfile_DEPS_TARGET) + add_library(xorg_xorg_xkbfile_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xkbfile_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xkbfile_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xkbfile_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xkbfile_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xkbfile_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xkbfile_LIBS_RELEASE}" + "${xorg_xorg_xkbfile_LIB_DIRS_RELEASE}" + "${xorg_xorg_xkbfile_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xkbfile_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xkbfile_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xkbfile_DEPS_TARGET + xorg_xorg_xkbfile_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xkbfile" + "${xorg_xorg_xkbfile_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xkbfile + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xkbfile_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xkbfile_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xkbfile_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xkbfile + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xkbfile_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xkbfile PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xkbfile_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xkbfile PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xkbfile_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xkbfile PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xkbfile_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xkbfile PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xkbfile_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xkbfile PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xkbfile_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xinerama ############# + + set(xorg_xorg_xinerama_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xinerama_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xinerama_FRAMEWORKS_RELEASE}" "${xorg_xorg_xinerama_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xinerama_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xinerama_DEPS_TARGET) + add_library(xorg_xorg_xinerama_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xinerama_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xinerama_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xinerama_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xinerama_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xinerama_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xinerama_LIBS_RELEASE}" + "${xorg_xorg_xinerama_LIB_DIRS_RELEASE}" + "${xorg_xorg_xinerama_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xinerama_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xinerama_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xinerama_DEPS_TARGET + xorg_xorg_xinerama_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xinerama" + "${xorg_xorg_xinerama_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xinerama + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xinerama_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xinerama_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xinerama_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xinerama + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xinerama_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xinerama PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xinerama_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xinerama PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xinerama_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xinerama PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xinerama_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xinerama PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xinerama_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xinerama PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xinerama_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xi ############# + + set(xorg_xorg_xi_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xi_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xi_FRAMEWORKS_RELEASE}" "${xorg_xorg_xi_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xi_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xi_DEPS_TARGET) + add_library(xorg_xorg_xi_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xi_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xi_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xi_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xi_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xi_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xi_LIBS_RELEASE}" + "${xorg_xorg_xi_LIB_DIRS_RELEASE}" + "${xorg_xorg_xi_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xi_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xi_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xi_DEPS_TARGET + xorg_xorg_xi_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xi" + "${xorg_xorg_xi_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xi + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xi_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xi_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xi_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xi + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xi_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xi PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xi_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xi PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xi_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xi PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xi_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xi PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xi_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xi PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xi_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xfixes ############# + + set(xorg_xorg_xfixes_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xfixes_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xfixes_FRAMEWORKS_RELEASE}" "${xorg_xorg_xfixes_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xfixes_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xfixes_DEPS_TARGET) + add_library(xorg_xorg_xfixes_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xfixes_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xfixes_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xfixes_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xfixes_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xfixes_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xfixes_LIBS_RELEASE}" + "${xorg_xorg_xfixes_LIB_DIRS_RELEASE}" + "${xorg_xorg_xfixes_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xfixes_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xfixes_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xfixes_DEPS_TARGET + xorg_xorg_xfixes_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xfixes" + "${xorg_xorg_xfixes_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xfixes + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xfixes_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xfixes_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xfixes_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xfixes + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xfixes_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xfixes PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xfixes_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xfixes PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xfixes_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xfixes PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xfixes_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xfixes PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xfixes_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xfixes PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xfixes_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xext ############# + + set(xorg_xorg_xext_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xext_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xext_FRAMEWORKS_RELEASE}" "${xorg_xorg_xext_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xext_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xext_DEPS_TARGET) + add_library(xorg_xorg_xext_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xext_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xext_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xext_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xext_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xext_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xext_LIBS_RELEASE}" + "${xorg_xorg_xext_LIB_DIRS_RELEASE}" + "${xorg_xorg_xext_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xext_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xext_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xext_DEPS_TARGET + xorg_xorg_xext_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xext" + "${xorg_xorg_xext_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xext + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xext_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xext_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xext_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xext + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xext_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xext PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xext_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xext PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xext_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xext PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xext_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xext PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xext_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xext PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xext_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xdmcp ############# + + set(xorg_xorg_xdmcp_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xdmcp_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xdmcp_FRAMEWORKS_RELEASE}" "${xorg_xorg_xdmcp_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xdmcp_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xdmcp_DEPS_TARGET) + add_library(xorg_xorg_xdmcp_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xdmcp_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xdmcp_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xdmcp_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xdmcp_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xdmcp_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xdmcp_LIBS_RELEASE}" + "${xorg_xorg_xdmcp_LIB_DIRS_RELEASE}" + "${xorg_xorg_xdmcp_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xdmcp_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xdmcp_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xdmcp_DEPS_TARGET + xorg_xorg_xdmcp_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xdmcp" + "${xorg_xorg_xdmcp_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xdmcp + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xdmcp_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xdmcp_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xdmcp_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xdmcp + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xdmcp_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xdmcp PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xdmcp_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xdmcp PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xdmcp_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xdmcp PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xdmcp_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xdmcp PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xdmcp_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xdmcp PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xdmcp_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xdamage ############# + + set(xorg_xorg_xdamage_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xdamage_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xdamage_FRAMEWORKS_RELEASE}" "${xorg_xorg_xdamage_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xdamage_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xdamage_DEPS_TARGET) + add_library(xorg_xorg_xdamage_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xdamage_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xdamage_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xdamage_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xdamage_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xdamage_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xdamage_LIBS_RELEASE}" + "${xorg_xorg_xdamage_LIB_DIRS_RELEASE}" + "${xorg_xorg_xdamage_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xdamage_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xdamage_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xdamage_DEPS_TARGET + xorg_xorg_xdamage_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xdamage" + "${xorg_xorg_xdamage_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xdamage + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xdamage_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xdamage_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xdamage_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xdamage + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xdamage_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xdamage PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xdamage_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xdamage PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xdamage_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xdamage PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xdamage_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xdamage PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xdamage_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xdamage PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xdamage_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcursor ############# + + set(xorg_xorg_xcursor_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcursor_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcursor_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcursor_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcursor_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcursor_DEPS_TARGET) + add_library(xorg_xorg_xcursor_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcursor_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcursor_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcursor_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcursor_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcursor_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcursor_LIBS_RELEASE}" + "${xorg_xorg_xcursor_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcursor_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcursor_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcursor_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcursor_DEPS_TARGET + xorg_xorg_xcursor_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcursor" + "${xorg_xorg_xcursor_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcursor + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcursor_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcursor_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcursor_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcursor + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcursor_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcursor PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcursor_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcursor PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcursor_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcursor PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcursor_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcursor PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcursor_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcursor PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcursor_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xcomposite ############# + + set(xorg_xorg_xcomposite_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xcomposite_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xcomposite_FRAMEWORKS_RELEASE}" "${xorg_xorg_xcomposite_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xcomposite_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xcomposite_DEPS_TARGET) + add_library(xorg_xorg_xcomposite_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xcomposite_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcomposite_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xcomposite_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xcomposite_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xcomposite_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xcomposite_LIBS_RELEASE}" + "${xorg_xorg_xcomposite_LIB_DIRS_RELEASE}" + "${xorg_xorg_xcomposite_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xcomposite_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xcomposite_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xcomposite_DEPS_TARGET + xorg_xorg_xcomposite_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xcomposite" + "${xorg_xorg_xcomposite_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xcomposite + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xcomposite_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xcomposite_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xcomposite_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xcomposite + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xcomposite_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xcomposite PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xcomposite_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xcomposite PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xcomposite_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcomposite PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xcomposite_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xcomposite PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xcomposite_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xcomposite PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xcomposite_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xaw7 ############# + + set(xorg_xorg_xaw7_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xaw7_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xaw7_FRAMEWORKS_RELEASE}" "${xorg_xorg_xaw7_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xaw7_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xaw7_DEPS_TARGET) + add_library(xorg_xorg_xaw7_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xaw7_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xaw7_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xaw7_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xaw7_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xaw7_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xaw7_LIBS_RELEASE}" + "${xorg_xorg_xaw7_LIB_DIRS_RELEASE}" + "${xorg_xorg_xaw7_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xaw7_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xaw7_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xaw7_DEPS_TARGET + xorg_xorg_xaw7_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xaw7" + "${xorg_xorg_xaw7_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xaw7 + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xaw7_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xaw7_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xaw7_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xaw7 + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xaw7_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xaw7 PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xaw7_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xaw7 PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xaw7_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xaw7 PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xaw7_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xaw7 PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xaw7_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xaw7 PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xaw7_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::xau ############# + + set(xorg_xorg_xau_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_xau_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_xau_FRAMEWORKS_RELEASE}" "${xorg_xorg_xau_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_xau_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_xau_DEPS_TARGET) + add_library(xorg_xorg_xau_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_xau_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xau_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_xau_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_xau_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_xau_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_xau_LIBS_RELEASE}" + "${xorg_xorg_xau_LIB_DIRS_RELEASE}" + "${xorg_xorg_xau_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_xau_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_xau_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_xau_DEPS_TARGET + xorg_xorg_xau_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_xau" + "${xorg_xorg_xau_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::xau + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_xau_OBJECTS_RELEASE}> + $<$:${xorg_xorg_xau_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_xau_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::xau + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_xau_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::xau PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_xau_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::xau PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_xau_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xau PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_xau_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::xau PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_xau_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::xau PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_xau_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::ice ############# + + set(xorg_xorg_ice_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_ice_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_ice_FRAMEWORKS_RELEASE}" "${xorg_xorg_ice_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_ice_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_ice_DEPS_TARGET) + add_library(xorg_xorg_ice_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_ice_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_ice_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_ice_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_ice_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_ice_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_ice_LIBS_RELEASE}" + "${xorg_xorg_ice_LIB_DIRS_RELEASE}" + "${xorg_xorg_ice_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_ice_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_ice_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_ice_DEPS_TARGET + xorg_xorg_ice_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_ice" + "${xorg_xorg_ice_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::ice + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_ice_OBJECTS_RELEASE}> + $<$:${xorg_xorg_ice_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_ice_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::ice + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_ice_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::ice PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_ice_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::ice PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_ice_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::ice PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_ice_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::ice PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_ice_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::ice PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_ice_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::fontenc ############# + + set(xorg_xorg_fontenc_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_fontenc_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_fontenc_FRAMEWORKS_RELEASE}" "${xorg_xorg_fontenc_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_fontenc_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_fontenc_DEPS_TARGET) + add_library(xorg_xorg_fontenc_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_fontenc_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_fontenc_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_fontenc_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_fontenc_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_fontenc_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_fontenc_LIBS_RELEASE}" + "${xorg_xorg_fontenc_LIB_DIRS_RELEASE}" + "${xorg_xorg_fontenc_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_fontenc_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_fontenc_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_fontenc_DEPS_TARGET + xorg_xorg_fontenc_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_fontenc" + "${xorg_xorg_fontenc_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::fontenc + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_fontenc_OBJECTS_RELEASE}> + $<$:${xorg_xorg_fontenc_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_fontenc_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::fontenc + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_fontenc_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::fontenc PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_fontenc_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::fontenc PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_fontenc_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::fontenc PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_fontenc_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::fontenc PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_fontenc_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::fontenc PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_fontenc_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::x11-xcb ############# + + set(xorg_xorg_x11-xcb_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_x11-xcb_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_x11-xcb_FRAMEWORKS_RELEASE}" "${xorg_xorg_x11-xcb_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_x11-xcb_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_x11-xcb_DEPS_TARGET) + add_library(xorg_xorg_x11-xcb_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_x11-xcb_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_x11-xcb_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_x11-xcb_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_x11-xcb_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_x11-xcb_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_x11-xcb_LIBS_RELEASE}" + "${xorg_xorg_x11-xcb_LIB_DIRS_RELEASE}" + "${xorg_xorg_x11-xcb_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_x11-xcb_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_x11-xcb_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_x11-xcb_DEPS_TARGET + xorg_xorg_x11-xcb_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_x11-xcb" + "${xorg_xorg_x11-xcb_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::x11-xcb + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_x11-xcb_OBJECTS_RELEASE}> + $<$:${xorg_xorg_x11-xcb_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_x11-xcb_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::x11-xcb + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_x11-xcb_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::x11-xcb PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_x11-xcb_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::x11-xcb PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_x11-xcb_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::x11-xcb PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_x11-xcb_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::x11-xcb PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_x11-xcb_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::x11-xcb PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_x11-xcb_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## COMPONENT xorg::x11 ############# + + set(xorg_xorg_x11_FRAMEWORKS_FOUND_RELEASE "") + conan_find_apple_frameworks(xorg_xorg_x11_FRAMEWORKS_FOUND_RELEASE "${xorg_xorg_x11_FRAMEWORKS_RELEASE}" "${xorg_xorg_x11_FRAMEWORK_DIRS_RELEASE}") + + set(xorg_xorg_x11_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET xorg_xorg_x11_DEPS_TARGET) + add_library(xorg_xorg_x11_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET xorg_xorg_x11_DEPS_TARGET + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_x11_FRAMEWORKS_FOUND_RELEASE}> + $<$:${xorg_xorg_x11_SYSTEM_LIBS_RELEASE}> + $<$:${xorg_xorg_x11_DEPENDENCIES_RELEASE}> + APPEND) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'xorg_xorg_x11_DEPS_TARGET' to all of them + conan_package_library_targets("${xorg_xorg_x11_LIBS_RELEASE}" + "${xorg_xorg_x11_LIB_DIRS_RELEASE}" + "${xorg_xorg_x11_BIN_DIRS_RELEASE}" # package_bindir + "${xorg_xorg_x11_LIBRARY_TYPE_RELEASE}" + "${xorg_xorg_x11_IS_HOST_WINDOWS_RELEASE}" + xorg_xorg_x11_DEPS_TARGET + xorg_xorg_x11_LIBRARIES_TARGETS + "_RELEASE" + "xorg_xorg_x11" + "${xorg_xorg_x11_NO_SONAME_MODE_RELEASE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET xorg::x11 + PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${xorg_xorg_x11_OBJECTS_RELEASE}> + $<$:${xorg_xorg_x11_LIBRARIES_TARGETS}> + APPEND) + + if("${xorg_xorg_x11_LIBS_RELEASE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET xorg::x11 + PROPERTY INTERFACE_LINK_LIBRARIES + xorg_xorg_x11_DEPS_TARGET + APPEND) + endif() + + set_property(TARGET xorg::x11 PROPERTY INTERFACE_LINK_OPTIONS + $<$:${xorg_xorg_x11_LINKER_FLAGS_RELEASE}> APPEND) + set_property(TARGET xorg::x11 PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${xorg_xorg_x11_INCLUDE_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::x11 PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${xorg_xorg_x11_LIB_DIRS_RELEASE}> APPEND) + set_property(TARGET xorg::x11 PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${xorg_xorg_x11_COMPILE_DEFINITIONS_RELEASE}> APPEND) + set_property(TARGET xorg::x11 PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${xorg_xorg_x11_COMPILE_OPTIONS_RELEASE}> APPEND) + + ########## AGGREGATED GLOBAL TARGET WITH THE COMPONENTS ##################### + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::sm APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::uuid APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-cursor APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-dri3 APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-util APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-event APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-aux APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-atom APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-xinerama APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-xfixes APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-sync APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-shm APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-shape APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-renderutil APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-render APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-randr APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-keysyms APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-image APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-icccm APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcb-xkb APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xxf86vm APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xvmc APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xv APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xtst APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xt APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xscrnsaver APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xres APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xrender APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xrandr APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xpm APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xmuu APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xmu APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xkbfile APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xinerama APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xi APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xfixes APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xext APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xdmcp APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xdamage APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcursor APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xcomposite APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xaw7 APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::xau APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::ice APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::fontenc APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::x11-xcb APPEND) + set_property(TARGET xorg::xorg PROPERTY INTERFACE_LINK_LIBRARIES xorg::x11 APPEND) + +########## For the modules (FindXXX) +set(xorg_LIBRARIES_RELEASE xorg::xorg) diff --git a/xorg-config-version.cmake b/xorg-config-version.cmake new file mode 100644 index 0000000..805ae66 --- /dev/null +++ b/xorg-config-version.cmake @@ -0,0 +1,21 @@ +set(PACKAGE_VERSION "system") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + if("system" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR ${CMAKE_MATCH_1}) + else() + set(CVF_VERSION_MAJOR "system") + endif() + + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() \ No newline at end of file diff --git a/xorg-config.cmake b/xorg-config.cmake new file mode 100644 index 0000000..683bf22 --- /dev/null +++ b/xorg-config.cmake @@ -0,0 +1,40 @@ +########## MACROS ########################################################################### +############################################################################################# + +# Requires CMake > 3.15 +if(${CMAKE_VERSION} VERSION_LESS "3.15") + message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.15") +endif() + +if(xorg_FIND_QUIETLY) + set(xorg_MESSAGE_MODE VERBOSE) +else() + set(xorg_MESSAGE_MODE STATUS) +endif() + +include(${CMAKE_CURRENT_LIST_DIR}/cmakedeps_macros.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/xorgTargets.cmake) +include(CMakeFindDependencyMacro) + +check_build_type_defined() + +foreach(_DEPENDENCY ${xorg_FIND_DEPENDENCY_NAMES} ) + # Check that we have not already called a find_package with the transitive dependency + if(NOT ${_DEPENDENCY}_FOUND) + find_dependency(${_DEPENDENCY} REQUIRED ${${_DEPENDENCY}_FIND_MODE}) + endif() +endforeach() + +set(xorg_VERSION_STRING "system") +set(xorg_INCLUDE_DIRS ${xorg_INCLUDE_DIRS_RELEASE} ) +set(xorg_INCLUDE_DIR ${xorg_INCLUDE_DIRS_RELEASE} ) +set(xorg_LIBRARIES ${xorg_LIBRARIES_RELEASE} ) +set(xorg_DEFINITIONS ${xorg_DEFINITIONS_RELEASE} ) + +# Only the first installed configuration is included to avoid the collision +foreach(_BUILD_MODULE ${xorg_BUILD_MODULES_PATHS_RELEASE} ) + message(${xorg_MESSAGE_MODE} "Conan: Including build module from '${_BUILD_MODULE}'") + include(${_BUILD_MODULE}) +endforeach() + + diff --git a/xorg-release-x86_64-data.cmake b/xorg-release-x86_64-data.cmake new file mode 100644 index 0000000..5ff5f10 --- /dev/null +++ b/xorg-release-x86_64-data.cmake @@ -0,0 +1,1533 @@ +########### AGGREGATED COMPONENTS AND DEPENDENCIES FOR THE MULTI CONFIG ##################### +############################################################################################# + +list(APPEND xorg_COMPONENT_NAMES xorg::x11 xorg::x11-xcb xorg::fontenc xorg::ice xorg::xau xorg::xaw7 xorg::xcomposite xorg::xcursor xorg::xdamage xorg::xdmcp xorg::xext xorg::xfixes xorg::xi xorg::xinerama xorg::xkbfile xorg::xmu xorg::xmuu xorg::xpm xorg::xrandr xorg::xrender xorg::xres xorg::xscrnsaver xorg::xt xorg::xtst xorg::xv xorg::xvmc xorg::xxf86vm xorg::xcb-xkb xorg::xcb-icccm xorg::xcb-image xorg::xcb-keysyms xorg::xcb-randr xorg::xcb-render xorg::xcb-renderutil xorg::xcb-shape xorg::xcb-shm xorg::xcb-sync xorg::xcb-xfixes xorg::xcb-xinerama xorg::xcb xorg::xcb-atom xorg::xcb-aux xorg::xcb-event xorg::xcb-util xorg::xcb-dri3 xorg::xcb-cursor xorg::uuid xorg::sm) +list(REMOVE_DUPLICATES xorg_COMPONENT_NAMES) +set(xorg_FIND_DEPENDENCY_NAMES "") + +########### VARIABLES ####################################################################### +############################################################################################# +set(xorg_PACKAGE_FOLDER_RELEASE "/home/plex/.conan2/p/xorgf524d5967bccd/p") +set(xorg_BUILD_MODULES_PATHS_RELEASE ) + + +set(xorg_INCLUDE_DIRS_RELEASE ) +set(xorg_RES_DIRS_RELEASE ) +set(xorg_DEFINITIONS_RELEASE ) +set(xorg_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_EXE_LINK_FLAGS_RELEASE ) +set(xorg_OBJECTS_RELEASE ) +set(xorg_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_COMPILE_OPTIONS_C_RELEASE ) +set(xorg_COMPILE_OPTIONS_CXX_RELEASE ) +set(xorg_LIB_DIRS_RELEASE ) +set(xorg_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_LIBS_RELEASE ) +set(xorg_SYSTEM_LIBS_RELEASE SM uuid xcb-cursor xcb xcb-dri3 xcb-util xcb-xinerama xcb-xfixes xcb-sync xcb-shm xcb-shape xcb-render-util xcb-render xcb-randr xcb-keysyms xcb-image xcb-icccm xcb-xkb Xxf86vm XvMC Xv Xtst Xt X11 Xss XRes Xrender Xrandr Xpm Xmuu Xmu xkbfile Xinerama Xi Xfixes Xext Xdmcp Xdamage Xcursor Xcomposite Xaw7 Xau ICE fontenc X11-xcb) +set(xorg_FRAMEWORK_DIRS_RELEASE ) +set(xorg_FRAMEWORKS_RELEASE ) +set(xorg_BUILD_DIRS_RELEASE ) +set(xorg_NO_SONAME_MODE_RELEASE FALSE) + + +# COMPOUND VARIABLES +set(xorg_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_COMPILE_OPTIONS_C_RELEASE}>") +set(xorg_LINKER_FLAGS_RELEASE + "$<$,SHARED_LIBRARY>:${xorg_SHARED_LINK_FLAGS_RELEASE}>" + "$<$,MODULE_LIBRARY>:${xorg_SHARED_LINK_FLAGS_RELEASE}>" + "$<$,EXECUTABLE>:${xorg_EXE_LINK_FLAGS_RELEASE}>") + + +set(xorg_COMPONENTS_RELEASE xorg::x11 xorg::x11-xcb xorg::fontenc xorg::ice xorg::xau xorg::xaw7 xorg::xcomposite xorg::xcursor xorg::xdamage xorg::xdmcp xorg::xext xorg::xfixes xorg::xi xorg::xinerama xorg::xkbfile xorg::xmu xorg::xmuu xorg::xpm xorg::xrandr xorg::xrender xorg::xres xorg::xscrnsaver xorg::xt xorg::xtst xorg::xv xorg::xvmc xorg::xxf86vm xorg::xcb-xkb xorg::xcb-icccm xorg::xcb-image xorg::xcb-keysyms xorg::xcb-randr xorg::xcb-render xorg::xcb-renderutil xorg::xcb-shape xorg::xcb-shm xorg::xcb-sync xorg::xcb-xfixes xorg::xcb-xinerama xorg::xcb xorg::xcb-atom xorg::xcb-aux xorg::xcb-event xorg::xcb-util xorg::xcb-dri3 xorg::xcb-cursor xorg::uuid xorg::sm) +########### COMPONENT xorg::sm VARIABLES ############################################ + +set(xorg_xorg_sm_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_sm_LIB_DIRS_RELEASE ) +set(xorg_xorg_sm_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_sm_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_sm_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_sm_RES_DIRS_RELEASE ) +set(xorg_xorg_sm_DEFINITIONS_RELEASE ) +set(xorg_xorg_sm_OBJECTS_RELEASE ) +set(xorg_xorg_sm_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_sm_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_sm_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_sm_LIBS_RELEASE ) +set(xorg_xorg_sm_SYSTEM_LIBS_RELEASE SM) +set(xorg_xorg_sm_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_sm_FRAMEWORKS_RELEASE ) +set(xorg_xorg_sm_DEPENDENCIES_RELEASE xorg::uuid) +set(xorg_xorg_sm_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_sm_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_sm_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_sm_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_sm_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_sm_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_sm_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_sm_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_sm_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_sm_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::uuid VARIABLES ############################################ + +set(xorg_xorg_uuid_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_uuid_LIB_DIRS_RELEASE ) +set(xorg_xorg_uuid_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_uuid_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_uuid_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_uuid_RES_DIRS_RELEASE ) +set(xorg_xorg_uuid_DEFINITIONS_RELEASE ) +set(xorg_xorg_uuid_OBJECTS_RELEASE ) +set(xorg_xorg_uuid_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_uuid_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_uuid_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_uuid_LIBS_RELEASE ) +set(xorg_xorg_uuid_SYSTEM_LIBS_RELEASE uuid) +set(xorg_xorg_uuid_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_uuid_FRAMEWORKS_RELEASE ) +set(xorg_xorg_uuid_DEPENDENCIES_RELEASE ) +set(xorg_xorg_uuid_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_uuid_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_uuid_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_uuid_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_uuid_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_uuid_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_uuid_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_uuid_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_uuid_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_uuid_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-cursor VARIABLES ############################################ + +set(xorg_xorg_xcb-cursor_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-cursor_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-cursor_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-cursor_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-cursor_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-cursor_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-cursor_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-cursor_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-cursor_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-cursor_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-cursor_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-cursor_LIBS_RELEASE ) +set(xorg_xorg_xcb-cursor_SYSTEM_LIBS_RELEASE xcb-cursor xcb) +set(xorg_xorg_xcb-cursor_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-cursor_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-cursor_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-cursor_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-cursor_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-cursor_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-cursor_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-cursor_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-cursor_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-cursor_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-cursor_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-cursor_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-cursor_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-dri3 VARIABLES ############################################ + +set(xorg_xorg_xcb-dri3_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-dri3_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-dri3_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-dri3_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-dri3_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-dri3_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-dri3_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-dri3_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-dri3_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-dri3_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-dri3_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-dri3_LIBS_RELEASE ) +set(xorg_xorg_xcb-dri3_SYSTEM_LIBS_RELEASE xcb-dri3) +set(xorg_xorg_xcb-dri3_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-dri3_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-dri3_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-dri3_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-dri3_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-dri3_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-dri3_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-dri3_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-dri3_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-dri3_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-dri3_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-dri3_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-dri3_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-util VARIABLES ############################################ + +set(xorg_xorg_xcb-util_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-util_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-util_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-util_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-util_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-util_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-util_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-util_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-util_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-util_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-util_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-util_LIBS_RELEASE ) +set(xorg_xorg_xcb-util_SYSTEM_LIBS_RELEASE xcb-util xcb) +set(xorg_xorg_xcb-util_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-util_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-util_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-util_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-util_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-util_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-util_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-util_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-util_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-util_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-util_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-util_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-util_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-event VARIABLES ############################################ + +set(xorg_xorg_xcb-event_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-event_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-event_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-event_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-event_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-event_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-event_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-event_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-event_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-event_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-event_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-event_LIBS_RELEASE ) +set(xorg_xorg_xcb-event_SYSTEM_LIBS_RELEASE xcb-util xcb) +set(xorg_xorg_xcb-event_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-event_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-event_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-event_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-event_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-event_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-event_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-event_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-event_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-event_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-event_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-event_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-event_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-aux VARIABLES ############################################ + +set(xorg_xorg_xcb-aux_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-aux_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-aux_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-aux_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-aux_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-aux_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-aux_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-aux_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-aux_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-aux_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-aux_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-aux_LIBS_RELEASE ) +set(xorg_xorg_xcb-aux_SYSTEM_LIBS_RELEASE xcb-util xcb) +set(xorg_xorg_xcb-aux_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-aux_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-aux_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-aux_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-aux_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-aux_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-aux_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-aux_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-aux_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-aux_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-aux_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-aux_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-aux_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-atom VARIABLES ############################################ + +set(xorg_xorg_xcb-atom_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-atom_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-atom_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-atom_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-atom_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-atom_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-atom_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-atom_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-atom_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-atom_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-atom_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-atom_LIBS_RELEASE ) +set(xorg_xorg_xcb-atom_SYSTEM_LIBS_RELEASE xcb-util xcb) +set(xorg_xorg_xcb-atom_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-atom_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-atom_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-atom_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-atom_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-atom_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-atom_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-atom_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-atom_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-atom_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-atom_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-atom_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-atom_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb VARIABLES ############################################ + +set(xorg_xorg_xcb_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb_OBJECTS_RELEASE ) +set(xorg_xorg_xcb_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb_LIBS_RELEASE ) +set(xorg_xorg_xcb_SYSTEM_LIBS_RELEASE xcb) +set(xorg_xorg_xcb_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-xinerama VARIABLES ############################################ + +set(xorg_xorg_xcb-xinerama_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-xinerama_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-xinerama_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-xinerama_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-xinerama_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-xinerama_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-xinerama_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-xinerama_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-xinerama_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-xinerama_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-xinerama_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-xinerama_LIBS_RELEASE ) +set(xorg_xorg_xcb-xinerama_SYSTEM_LIBS_RELEASE xcb-xinerama) +set(xorg_xorg_xcb-xinerama_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-xinerama_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-xinerama_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-xinerama_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-xinerama_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-xinerama_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-xinerama_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-xinerama_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-xinerama_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-xinerama_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-xinerama_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-xinerama_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-xinerama_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-xfixes VARIABLES ############################################ + +set(xorg_xorg_xcb-xfixes_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-xfixes_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-xfixes_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-xfixes_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-xfixes_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-xfixes_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-xfixes_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-xfixes_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-xfixes_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-xfixes_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-xfixes_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-xfixes_LIBS_RELEASE ) +set(xorg_xorg_xcb-xfixes_SYSTEM_LIBS_RELEASE xcb-xfixes) +set(xorg_xorg_xcb-xfixes_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-xfixes_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-xfixes_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-xfixes_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-xfixes_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-xfixes_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-xfixes_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-xfixes_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-xfixes_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-xfixes_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-xfixes_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-xfixes_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-xfixes_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-sync VARIABLES ############################################ + +set(xorg_xorg_xcb-sync_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-sync_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-sync_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-sync_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-sync_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-sync_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-sync_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-sync_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-sync_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-sync_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-sync_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-sync_LIBS_RELEASE ) +set(xorg_xorg_xcb-sync_SYSTEM_LIBS_RELEASE xcb-sync) +set(xorg_xorg_xcb-sync_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-sync_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-sync_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-sync_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-sync_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-sync_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-sync_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-sync_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-sync_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-sync_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-sync_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-sync_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-sync_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-shm VARIABLES ############################################ + +set(xorg_xorg_xcb-shm_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-shm_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-shm_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-shm_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-shm_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-shm_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-shm_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-shm_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-shm_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-shm_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-shm_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-shm_LIBS_RELEASE ) +set(xorg_xorg_xcb-shm_SYSTEM_LIBS_RELEASE xcb-shm) +set(xorg_xorg_xcb-shm_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-shm_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-shm_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-shm_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-shm_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-shm_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-shm_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-shm_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-shm_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-shm_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-shm_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-shm_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-shm_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-shape VARIABLES ############################################ + +set(xorg_xorg_xcb-shape_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-shape_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-shape_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-shape_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-shape_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-shape_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-shape_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-shape_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-shape_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-shape_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-shape_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-shape_LIBS_RELEASE ) +set(xorg_xorg_xcb-shape_SYSTEM_LIBS_RELEASE xcb-shape) +set(xorg_xorg_xcb-shape_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-shape_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-shape_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-shape_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-shape_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-shape_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-shape_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-shape_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-shape_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-shape_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-shape_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-shape_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-shape_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-renderutil VARIABLES ############################################ + +set(xorg_xorg_xcb-renderutil_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-renderutil_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-renderutil_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-renderutil_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-renderutil_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-renderutil_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-renderutil_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-renderutil_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-renderutil_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-renderutil_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-renderutil_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-renderutil_LIBS_RELEASE ) +set(xorg_xorg_xcb-renderutil_SYSTEM_LIBS_RELEASE xcb-render-util xcb xcb-render) +set(xorg_xorg_xcb-renderutil_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-renderutil_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-renderutil_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-renderutil_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-renderutil_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-renderutil_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-renderutil_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-renderutil_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-renderutil_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-renderutil_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-renderutil_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-renderutil_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-renderutil_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-render VARIABLES ############################################ + +set(xorg_xorg_xcb-render_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-render_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-render_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-render_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-render_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-render_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-render_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-render_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-render_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-render_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-render_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-render_LIBS_RELEASE ) +set(xorg_xorg_xcb-render_SYSTEM_LIBS_RELEASE xcb-render) +set(xorg_xorg_xcb-render_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-render_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-render_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-render_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-render_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-render_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-render_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-render_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-render_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-render_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-render_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-render_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-render_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-randr VARIABLES ############################################ + +set(xorg_xorg_xcb-randr_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-randr_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-randr_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-randr_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-randr_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-randr_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-randr_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-randr_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-randr_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-randr_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-randr_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-randr_LIBS_RELEASE ) +set(xorg_xorg_xcb-randr_SYSTEM_LIBS_RELEASE xcb-randr) +set(xorg_xorg_xcb-randr_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-randr_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-randr_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-randr_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-randr_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-randr_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-randr_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-randr_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-randr_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-randr_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-randr_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-randr_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-randr_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-keysyms VARIABLES ############################################ + +set(xorg_xorg_xcb-keysyms_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-keysyms_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-keysyms_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-keysyms_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-keysyms_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-keysyms_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-keysyms_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-keysyms_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-keysyms_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-keysyms_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-keysyms_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-keysyms_LIBS_RELEASE ) +set(xorg_xorg_xcb-keysyms_SYSTEM_LIBS_RELEASE xcb-keysyms xcb) +set(xorg_xorg_xcb-keysyms_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-keysyms_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-keysyms_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-keysyms_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-keysyms_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-keysyms_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-keysyms_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-keysyms_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-keysyms_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-keysyms_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-keysyms_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-keysyms_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-keysyms_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-image VARIABLES ############################################ + +set(xorg_xorg_xcb-image_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-image_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-image_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-image_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-image_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-image_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-image_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-image_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-image_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-image_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-image_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-image_LIBS_RELEASE ) +set(xorg_xorg_xcb-image_SYSTEM_LIBS_RELEASE xcb-image xcb xcb-shm) +set(xorg_xorg_xcb-image_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-image_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-image_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-image_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-image_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-image_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-image_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-image_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-image_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-image_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-image_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-image_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-image_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-icccm VARIABLES ############################################ + +set(xorg_xorg_xcb-icccm_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-icccm_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-icccm_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-icccm_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-icccm_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-icccm_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-icccm_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-icccm_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-icccm_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-icccm_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-icccm_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-icccm_LIBS_RELEASE ) +set(xorg_xorg_xcb-icccm_SYSTEM_LIBS_RELEASE xcb-icccm xcb) +set(xorg_xorg_xcb-icccm_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-icccm_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-icccm_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-icccm_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-icccm_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-icccm_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-icccm_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-icccm_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-icccm_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-icccm_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-icccm_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-icccm_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-icccm_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcb-xkb VARIABLES ############################################ + +set(xorg_xorg_xcb-xkb_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcb-xkb_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcb-xkb_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcb-xkb_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcb-xkb_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcb-xkb_RES_DIRS_RELEASE ) +set(xorg_xorg_xcb-xkb_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-xkb_OBJECTS_RELEASE ) +set(xorg_xorg_xcb-xkb_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcb-xkb_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcb-xkb_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcb-xkb_LIBS_RELEASE ) +set(xorg_xorg_xcb-xkb_SYSTEM_LIBS_RELEASE xcb-xkb) +set(xorg_xorg_xcb-xkb_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcb-xkb_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcb-xkb_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcb-xkb_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-xkb_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcb-xkb_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcb-xkb_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcb-xkb_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcb-xkb_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcb-xkb_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcb-xkb_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcb-xkb_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcb-xkb_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xxf86vm VARIABLES ############################################ + +set(xorg_xorg_xxf86vm_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xxf86vm_LIB_DIRS_RELEASE ) +set(xorg_xorg_xxf86vm_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xxf86vm_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xxf86vm_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xxf86vm_RES_DIRS_RELEASE ) +set(xorg_xorg_xxf86vm_DEFINITIONS_RELEASE ) +set(xorg_xorg_xxf86vm_OBJECTS_RELEASE ) +set(xorg_xorg_xxf86vm_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xxf86vm_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xxf86vm_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xxf86vm_LIBS_RELEASE ) +set(xorg_xorg_xxf86vm_SYSTEM_LIBS_RELEASE Xxf86vm) +set(xorg_xorg_xxf86vm_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xxf86vm_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xxf86vm_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xxf86vm_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xxf86vm_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xxf86vm_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xxf86vm_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xxf86vm_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xxf86vm_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xxf86vm_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xxf86vm_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xxf86vm_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xxf86vm_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xvmc VARIABLES ############################################ + +set(xorg_xorg_xvmc_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xvmc_LIB_DIRS_RELEASE ) +set(xorg_xorg_xvmc_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xvmc_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xvmc_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xvmc_RES_DIRS_RELEASE ) +set(xorg_xorg_xvmc_DEFINITIONS_RELEASE ) +set(xorg_xorg_xvmc_OBJECTS_RELEASE ) +set(xorg_xorg_xvmc_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xvmc_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xvmc_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xvmc_LIBS_RELEASE ) +set(xorg_xorg_xvmc_SYSTEM_LIBS_RELEASE XvMC) +set(xorg_xorg_xvmc_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xvmc_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xvmc_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xvmc_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xvmc_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xvmc_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xvmc_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xvmc_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xvmc_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xvmc_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xvmc_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xvmc_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xvmc_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xv VARIABLES ############################################ + +set(xorg_xorg_xv_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xv_LIB_DIRS_RELEASE ) +set(xorg_xorg_xv_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xv_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xv_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xv_RES_DIRS_RELEASE ) +set(xorg_xorg_xv_DEFINITIONS_RELEASE ) +set(xorg_xorg_xv_OBJECTS_RELEASE ) +set(xorg_xorg_xv_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xv_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xv_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xv_LIBS_RELEASE ) +set(xorg_xorg_xv_SYSTEM_LIBS_RELEASE Xv) +set(xorg_xorg_xv_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xv_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xv_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xv_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xv_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xv_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xv_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xv_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xv_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xv_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xv_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xv_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xv_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xtst VARIABLES ############################################ + +set(xorg_xorg_xtst_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xtst_LIB_DIRS_RELEASE ) +set(xorg_xorg_xtst_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xtst_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xtst_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xtst_RES_DIRS_RELEASE ) +set(xorg_xorg_xtst_DEFINITIONS_RELEASE ) +set(xorg_xorg_xtst_OBJECTS_RELEASE ) +set(xorg_xorg_xtst_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xtst_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xtst_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xtst_LIBS_RELEASE ) +set(xorg_xorg_xtst_SYSTEM_LIBS_RELEASE Xtst) +set(xorg_xorg_xtst_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xtst_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xtst_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xtst_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xtst_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xtst_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xtst_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xtst_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xtst_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xtst_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xtst_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xtst_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xtst_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xt VARIABLES ############################################ + +set(xorg_xorg_xt_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xt_LIB_DIRS_RELEASE ) +set(xorg_xorg_xt_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xt_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xt_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xt_RES_DIRS_RELEASE ) +set(xorg_xorg_xt_DEFINITIONS_RELEASE ) +set(xorg_xorg_xt_OBJECTS_RELEASE ) +set(xorg_xorg_xt_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xt_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xt_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xt_LIBS_RELEASE ) +set(xorg_xorg_xt_SYSTEM_LIBS_RELEASE Xt X11) +set(xorg_xorg_xt_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xt_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xt_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xt_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xt_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xt_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xt_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xt_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xt_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xt_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xt_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xt_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xt_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xscrnsaver VARIABLES ############################################ + +set(xorg_xorg_xscrnsaver_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xscrnsaver_LIB_DIRS_RELEASE ) +set(xorg_xorg_xscrnsaver_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xscrnsaver_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xscrnsaver_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xscrnsaver_RES_DIRS_RELEASE ) +set(xorg_xorg_xscrnsaver_DEFINITIONS_RELEASE ) +set(xorg_xorg_xscrnsaver_OBJECTS_RELEASE ) +set(xorg_xorg_xscrnsaver_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xscrnsaver_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xscrnsaver_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xscrnsaver_LIBS_RELEASE ) +set(xorg_xorg_xscrnsaver_SYSTEM_LIBS_RELEASE Xss) +set(xorg_xorg_xscrnsaver_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xscrnsaver_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xscrnsaver_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xscrnsaver_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xscrnsaver_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xscrnsaver_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xscrnsaver_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xscrnsaver_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xscrnsaver_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xscrnsaver_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xscrnsaver_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xscrnsaver_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xscrnsaver_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xres VARIABLES ############################################ + +set(xorg_xorg_xres_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xres_LIB_DIRS_RELEASE ) +set(xorg_xorg_xres_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xres_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xres_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xres_RES_DIRS_RELEASE ) +set(xorg_xorg_xres_DEFINITIONS_RELEASE ) +set(xorg_xorg_xres_OBJECTS_RELEASE ) +set(xorg_xorg_xres_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xres_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xres_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xres_LIBS_RELEASE ) +set(xorg_xorg_xres_SYSTEM_LIBS_RELEASE XRes) +set(xorg_xorg_xres_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xres_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xres_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xres_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xres_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xres_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xres_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xres_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xres_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xres_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xres_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xres_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xres_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xrender VARIABLES ############################################ + +set(xorg_xorg_xrender_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xrender_LIB_DIRS_RELEASE ) +set(xorg_xorg_xrender_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xrender_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xrender_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xrender_RES_DIRS_RELEASE ) +set(xorg_xorg_xrender_DEFINITIONS_RELEASE ) +set(xorg_xorg_xrender_OBJECTS_RELEASE ) +set(xorg_xorg_xrender_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xrender_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xrender_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xrender_LIBS_RELEASE ) +set(xorg_xorg_xrender_SYSTEM_LIBS_RELEASE Xrender X11) +set(xorg_xorg_xrender_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xrender_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xrender_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xrender_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xrender_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xrender_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xrender_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xrender_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xrender_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xrender_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xrender_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xrender_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xrender_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xrandr VARIABLES ############################################ + +set(xorg_xorg_xrandr_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xrandr_LIB_DIRS_RELEASE ) +set(xorg_xorg_xrandr_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xrandr_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xrandr_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xrandr_RES_DIRS_RELEASE ) +set(xorg_xorg_xrandr_DEFINITIONS_RELEASE ) +set(xorg_xorg_xrandr_OBJECTS_RELEASE ) +set(xorg_xorg_xrandr_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xrandr_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xrandr_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xrandr_LIBS_RELEASE ) +set(xorg_xorg_xrandr_SYSTEM_LIBS_RELEASE Xrandr) +set(xorg_xorg_xrandr_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xrandr_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xrandr_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xrandr_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xrandr_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xrandr_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xrandr_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xrandr_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xrandr_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xrandr_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xrandr_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xrandr_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xrandr_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xpm VARIABLES ############################################ + +set(xorg_xorg_xpm_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xpm_LIB_DIRS_RELEASE ) +set(xorg_xorg_xpm_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xpm_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xpm_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xpm_RES_DIRS_RELEASE ) +set(xorg_xorg_xpm_DEFINITIONS_RELEASE ) +set(xorg_xorg_xpm_OBJECTS_RELEASE ) +set(xorg_xorg_xpm_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xpm_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xpm_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xpm_LIBS_RELEASE ) +set(xorg_xorg_xpm_SYSTEM_LIBS_RELEASE Xpm X11) +set(xorg_xorg_xpm_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xpm_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xpm_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xpm_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xpm_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xpm_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xpm_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xpm_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xpm_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xpm_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xpm_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xpm_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xpm_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xmuu VARIABLES ############################################ + +set(xorg_xorg_xmuu_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xmuu_LIB_DIRS_RELEASE ) +set(xorg_xorg_xmuu_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xmuu_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xmuu_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xmuu_RES_DIRS_RELEASE ) +set(xorg_xorg_xmuu_DEFINITIONS_RELEASE ) +set(xorg_xorg_xmuu_OBJECTS_RELEASE ) +set(xorg_xorg_xmuu_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xmuu_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xmuu_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xmuu_LIBS_RELEASE ) +set(xorg_xorg_xmuu_SYSTEM_LIBS_RELEASE Xmuu X11) +set(xorg_xorg_xmuu_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xmuu_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xmuu_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xmuu_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xmuu_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xmuu_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xmuu_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xmuu_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xmuu_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xmuu_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xmuu_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xmuu_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xmuu_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xmu VARIABLES ############################################ + +set(xorg_xorg_xmu_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xmu_LIB_DIRS_RELEASE ) +set(xorg_xorg_xmu_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xmu_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xmu_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xmu_RES_DIRS_RELEASE ) +set(xorg_xorg_xmu_DEFINITIONS_RELEASE ) +set(xorg_xorg_xmu_OBJECTS_RELEASE ) +set(xorg_xorg_xmu_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xmu_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xmu_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xmu_LIBS_RELEASE ) +set(xorg_xorg_xmu_SYSTEM_LIBS_RELEASE Xmu Xt X11) +set(xorg_xorg_xmu_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xmu_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xmu_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xmu_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xmu_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xmu_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xmu_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xmu_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xmu_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xmu_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xmu_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xmu_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xmu_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xkbfile VARIABLES ############################################ + +set(xorg_xorg_xkbfile_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xkbfile_LIB_DIRS_RELEASE ) +set(xorg_xorg_xkbfile_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xkbfile_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xkbfile_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xkbfile_RES_DIRS_RELEASE ) +set(xorg_xorg_xkbfile_DEFINITIONS_RELEASE ) +set(xorg_xorg_xkbfile_OBJECTS_RELEASE ) +set(xorg_xorg_xkbfile_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xkbfile_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xkbfile_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xkbfile_LIBS_RELEASE ) +set(xorg_xorg_xkbfile_SYSTEM_LIBS_RELEASE xkbfile) +set(xorg_xorg_xkbfile_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xkbfile_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xkbfile_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xkbfile_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xkbfile_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xkbfile_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xkbfile_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xkbfile_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xkbfile_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xkbfile_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xkbfile_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xkbfile_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xkbfile_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xinerama VARIABLES ############################################ + +set(xorg_xorg_xinerama_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xinerama_LIB_DIRS_RELEASE ) +set(xorg_xorg_xinerama_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xinerama_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xinerama_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xinerama_RES_DIRS_RELEASE ) +set(xorg_xorg_xinerama_DEFINITIONS_RELEASE ) +set(xorg_xorg_xinerama_OBJECTS_RELEASE ) +set(xorg_xorg_xinerama_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xinerama_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xinerama_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xinerama_LIBS_RELEASE ) +set(xorg_xorg_xinerama_SYSTEM_LIBS_RELEASE Xinerama) +set(xorg_xorg_xinerama_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xinerama_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xinerama_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xinerama_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xinerama_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xinerama_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xinerama_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xinerama_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xinerama_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xinerama_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xinerama_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xinerama_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xinerama_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xi VARIABLES ############################################ + +set(xorg_xorg_xi_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xi_LIB_DIRS_RELEASE ) +set(xorg_xorg_xi_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xi_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xi_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xi_RES_DIRS_RELEASE ) +set(xorg_xorg_xi_DEFINITIONS_RELEASE ) +set(xorg_xorg_xi_OBJECTS_RELEASE ) +set(xorg_xorg_xi_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xi_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xi_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xi_LIBS_RELEASE ) +set(xorg_xorg_xi_SYSTEM_LIBS_RELEASE Xi) +set(xorg_xorg_xi_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xi_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xi_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xi_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xi_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xi_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xi_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xi_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xi_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xi_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xi_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xi_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xi_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xfixes VARIABLES ############################################ + +set(xorg_xorg_xfixes_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xfixes_LIB_DIRS_RELEASE ) +set(xorg_xorg_xfixes_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xfixes_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xfixes_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xfixes_RES_DIRS_RELEASE ) +set(xorg_xorg_xfixes_DEFINITIONS_RELEASE ) +set(xorg_xorg_xfixes_OBJECTS_RELEASE ) +set(xorg_xorg_xfixes_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xfixes_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xfixes_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xfixes_LIBS_RELEASE ) +set(xorg_xorg_xfixes_SYSTEM_LIBS_RELEASE Xfixes) +set(xorg_xorg_xfixes_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xfixes_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xfixes_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xfixes_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xfixes_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xfixes_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xfixes_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xfixes_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xfixes_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xfixes_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xfixes_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xfixes_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xfixes_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xext VARIABLES ############################################ + +set(xorg_xorg_xext_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xext_LIB_DIRS_RELEASE ) +set(xorg_xorg_xext_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xext_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xext_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xext_RES_DIRS_RELEASE ) +set(xorg_xorg_xext_DEFINITIONS_RELEASE ) +set(xorg_xorg_xext_OBJECTS_RELEASE ) +set(xorg_xorg_xext_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xext_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xext_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xext_LIBS_RELEASE ) +set(xorg_xorg_xext_SYSTEM_LIBS_RELEASE Xext) +set(xorg_xorg_xext_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xext_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xext_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xext_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xext_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xext_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xext_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xext_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xext_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xext_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xext_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xext_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xext_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xdmcp VARIABLES ############################################ + +set(xorg_xorg_xdmcp_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xdmcp_LIB_DIRS_RELEASE ) +set(xorg_xorg_xdmcp_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xdmcp_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xdmcp_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xdmcp_RES_DIRS_RELEASE ) +set(xorg_xorg_xdmcp_DEFINITIONS_RELEASE ) +set(xorg_xorg_xdmcp_OBJECTS_RELEASE ) +set(xorg_xorg_xdmcp_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xdmcp_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xdmcp_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xdmcp_LIBS_RELEASE ) +set(xorg_xorg_xdmcp_SYSTEM_LIBS_RELEASE Xdmcp) +set(xorg_xorg_xdmcp_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xdmcp_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xdmcp_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xdmcp_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xdmcp_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xdmcp_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xdmcp_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xdmcp_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xdmcp_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xdmcp_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xdmcp_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xdmcp_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xdmcp_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xdamage VARIABLES ############################################ + +set(xorg_xorg_xdamage_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xdamage_LIB_DIRS_RELEASE ) +set(xorg_xorg_xdamage_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xdamage_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xdamage_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xdamage_RES_DIRS_RELEASE ) +set(xorg_xorg_xdamage_DEFINITIONS_RELEASE ) +set(xorg_xorg_xdamage_OBJECTS_RELEASE ) +set(xorg_xorg_xdamage_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xdamage_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xdamage_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xdamage_LIBS_RELEASE ) +set(xorg_xorg_xdamage_SYSTEM_LIBS_RELEASE Xdamage Xfixes) +set(xorg_xorg_xdamage_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xdamage_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xdamage_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xdamage_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xdamage_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xdamage_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xdamage_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xdamage_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xdamage_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xdamage_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xdamage_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xdamage_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xdamage_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcursor VARIABLES ############################################ + +set(xorg_xorg_xcursor_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcursor_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcursor_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcursor_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcursor_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcursor_RES_DIRS_RELEASE ) +set(xorg_xorg_xcursor_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcursor_OBJECTS_RELEASE ) +set(xorg_xorg_xcursor_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcursor_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcursor_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcursor_LIBS_RELEASE ) +set(xorg_xorg_xcursor_SYSTEM_LIBS_RELEASE Xcursor) +set(xorg_xorg_xcursor_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcursor_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcursor_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcursor_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcursor_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcursor_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcursor_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcursor_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcursor_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcursor_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcursor_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcursor_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcursor_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xcomposite VARIABLES ############################################ + +set(xorg_xorg_xcomposite_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xcomposite_LIB_DIRS_RELEASE ) +set(xorg_xorg_xcomposite_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xcomposite_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xcomposite_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xcomposite_RES_DIRS_RELEASE ) +set(xorg_xorg_xcomposite_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcomposite_OBJECTS_RELEASE ) +set(xorg_xorg_xcomposite_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xcomposite_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xcomposite_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xcomposite_LIBS_RELEASE ) +set(xorg_xorg_xcomposite_SYSTEM_LIBS_RELEASE Xcomposite) +set(xorg_xorg_xcomposite_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xcomposite_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xcomposite_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xcomposite_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcomposite_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xcomposite_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xcomposite_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xcomposite_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xcomposite_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xcomposite_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xcomposite_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xcomposite_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xcomposite_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xaw7 VARIABLES ############################################ + +set(xorg_xorg_xaw7_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xaw7_LIB_DIRS_RELEASE ) +set(xorg_xorg_xaw7_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xaw7_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xaw7_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xaw7_RES_DIRS_RELEASE ) +set(xorg_xorg_xaw7_DEFINITIONS_RELEASE ) +set(xorg_xorg_xaw7_OBJECTS_RELEASE ) +set(xorg_xorg_xaw7_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xaw7_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xaw7_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xaw7_LIBS_RELEASE ) +set(xorg_xorg_xaw7_SYSTEM_LIBS_RELEASE Xaw7 Xt X11) +set(xorg_xorg_xaw7_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xaw7_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xaw7_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xaw7_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xaw7_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xaw7_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xaw7_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xaw7_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xaw7_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xaw7_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xaw7_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xaw7_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xaw7_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::xau VARIABLES ############################################ + +set(xorg_xorg_xau_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_xau_LIB_DIRS_RELEASE ) +set(xorg_xorg_xau_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_xau_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_xau_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_xau_RES_DIRS_RELEASE ) +set(xorg_xorg_xau_DEFINITIONS_RELEASE ) +set(xorg_xorg_xau_OBJECTS_RELEASE ) +set(xorg_xorg_xau_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_xau_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_xau_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_xau_LIBS_RELEASE ) +set(xorg_xorg_xau_SYSTEM_LIBS_RELEASE Xau) +set(xorg_xorg_xau_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_xau_FRAMEWORKS_RELEASE ) +set(xorg_xorg_xau_DEPENDENCIES_RELEASE ) +set(xorg_xorg_xau_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xau_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_xau_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_xau_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_xau_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_xau_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_xau_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_xau_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_xau_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_xau_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::ice VARIABLES ############################################ + +set(xorg_xorg_ice_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_ice_LIB_DIRS_RELEASE ) +set(xorg_xorg_ice_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_ice_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_ice_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_ice_RES_DIRS_RELEASE ) +set(xorg_xorg_ice_DEFINITIONS_RELEASE ) +set(xorg_xorg_ice_OBJECTS_RELEASE ) +set(xorg_xorg_ice_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_ice_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_ice_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_ice_LIBS_RELEASE ) +set(xorg_xorg_ice_SYSTEM_LIBS_RELEASE ICE) +set(xorg_xorg_ice_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_ice_FRAMEWORKS_RELEASE ) +set(xorg_xorg_ice_DEPENDENCIES_RELEASE ) +set(xorg_xorg_ice_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_ice_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_ice_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_ice_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_ice_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_ice_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_ice_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_ice_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_ice_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_ice_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::fontenc VARIABLES ############################################ + +set(xorg_xorg_fontenc_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_fontenc_LIB_DIRS_RELEASE ) +set(xorg_xorg_fontenc_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_fontenc_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_fontenc_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_fontenc_RES_DIRS_RELEASE ) +set(xorg_xorg_fontenc_DEFINITIONS_RELEASE ) +set(xorg_xorg_fontenc_OBJECTS_RELEASE ) +set(xorg_xorg_fontenc_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_fontenc_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_fontenc_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_fontenc_LIBS_RELEASE ) +set(xorg_xorg_fontenc_SYSTEM_LIBS_RELEASE fontenc) +set(xorg_xorg_fontenc_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_fontenc_FRAMEWORKS_RELEASE ) +set(xorg_xorg_fontenc_DEPENDENCIES_RELEASE ) +set(xorg_xorg_fontenc_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_fontenc_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_fontenc_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_fontenc_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_fontenc_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_fontenc_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_fontenc_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_fontenc_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_fontenc_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_fontenc_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::x11-xcb VARIABLES ############################################ + +set(xorg_xorg_x11-xcb_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_x11-xcb_LIB_DIRS_RELEASE ) +set(xorg_xorg_x11-xcb_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_x11-xcb_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_x11-xcb_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_x11-xcb_RES_DIRS_RELEASE ) +set(xorg_xorg_x11-xcb_DEFINITIONS_RELEASE ) +set(xorg_xorg_x11-xcb_OBJECTS_RELEASE ) +set(xorg_xorg_x11-xcb_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_x11-xcb_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_x11-xcb_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_x11-xcb_LIBS_RELEASE ) +set(xorg_xorg_x11-xcb_SYSTEM_LIBS_RELEASE X11-xcb X11 xcb) +set(xorg_xorg_x11-xcb_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_x11-xcb_FRAMEWORKS_RELEASE ) +set(xorg_xorg_x11-xcb_DEPENDENCIES_RELEASE ) +set(xorg_xorg_x11-xcb_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_x11-xcb_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_x11-xcb_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_x11-xcb_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_x11-xcb_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_x11-xcb_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_x11-xcb_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_x11-xcb_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_x11-xcb_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_x11-xcb_COMPILE_OPTIONS_C_RELEASE}>") +########### COMPONENT xorg::x11 VARIABLES ############################################ + +set(xorg_xorg_x11_INCLUDE_DIRS_RELEASE ) +set(xorg_xorg_x11_LIB_DIRS_RELEASE ) +set(xorg_xorg_x11_BIN_DIRS_RELEASE "${xorg_PACKAGE_FOLDER_RELEASE}/bin") +set(xorg_xorg_x11_LIBRARY_TYPE_RELEASE SHARED) +set(xorg_xorg_x11_IS_HOST_WINDOWS_RELEASE 0) +set(xorg_xorg_x11_RES_DIRS_RELEASE ) +set(xorg_xorg_x11_DEFINITIONS_RELEASE ) +set(xorg_xorg_x11_OBJECTS_RELEASE ) +set(xorg_xorg_x11_COMPILE_DEFINITIONS_RELEASE ) +set(xorg_xorg_x11_COMPILE_OPTIONS_C_RELEASE "") +set(xorg_xorg_x11_COMPILE_OPTIONS_CXX_RELEASE "") +set(xorg_xorg_x11_LIBS_RELEASE ) +set(xorg_xorg_x11_SYSTEM_LIBS_RELEASE X11) +set(xorg_xorg_x11_FRAMEWORK_DIRS_RELEASE ) +set(xorg_xorg_x11_FRAMEWORKS_RELEASE ) +set(xorg_xorg_x11_DEPENDENCIES_RELEASE ) +set(xorg_xorg_x11_SHARED_LINK_FLAGS_RELEASE ) +set(xorg_xorg_x11_EXE_LINK_FLAGS_RELEASE ) +set(xorg_xorg_x11_NO_SONAME_MODE_RELEASE FALSE) + +# COMPOUND VARIABLES +set(xorg_xorg_x11_LINKER_FLAGS_RELEASE + $<$,SHARED_LIBRARY>:${xorg_xorg_x11_SHARED_LINK_FLAGS_RELEASE}> + $<$,MODULE_LIBRARY>:${xorg_xorg_x11_SHARED_LINK_FLAGS_RELEASE}> + $<$,EXECUTABLE>:${xorg_xorg_x11_EXE_LINK_FLAGS_RELEASE}> +) +set(xorg_xorg_x11_COMPILE_OPTIONS_RELEASE + "$<$:${xorg_xorg_x11_COMPILE_OPTIONS_CXX_RELEASE}>" + "$<$:${xorg_xorg_x11_COMPILE_OPTIONS_C_RELEASE}>") \ No newline at end of file diff --git a/xorgTargets.cmake b/xorgTargets.cmake new file mode 100644 index 0000000..4f3bdcd --- /dev/null +++ b/xorgTargets.cmake @@ -0,0 +1,27 @@ +# Load the debug and release variables +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB DATA_FILES "${_DIR}/xorg-*-data.cmake") + +foreach(f ${DATA_FILES}) + include(${f}) +endforeach() + +# Create the targets for all the components +foreach(_COMPONENT ${xorg_COMPONENT_NAMES} ) + if(NOT TARGET ${_COMPONENT}) + add_library(${_COMPONENT} INTERFACE IMPORTED) + message(${xorg_MESSAGE_MODE} "Conan: Component target declared '${_COMPONENT}'") + endif() +endforeach() + +if(NOT TARGET xorg::xorg) + add_library(xorg::xorg INTERFACE IMPORTED) + message(${xorg_MESSAGE_MODE} "Conan: Target declared 'xorg::xorg'") +endif() +# Load the debug and release library finders +get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) +file(GLOB CONFIG_FILES "${_DIR}/xorg-Target-*.cmake") + +foreach(f ${CONFIG_FILES}) + include(${f}) +endforeach() \ No newline at end of file