22 lines
545 B
CMake
22 lines
545 B
CMake
find_package(X11)
|
|
|
|
if(X11_FOUND)
|
|
|
|
set(X11_X11_FOUND TRUE)
|
|
|
|
foreach(component
|
|
X11
|
|
Xmu
|
|
Xt
|
|
)
|
|
|
|
if(X11_${component}_FOUND AND NOT TARGET X11::${component})
|
|
add_library(X11::${component} IMPORTED INTERFACE)
|
|
target_include_directories(X11::${component} SYSTEM
|
|
INTERFACE ${X11_${component}_INCLUDE_PATH})
|
|
target_link_libraries(X11::${component}
|
|
INTERFACE ${X11_${component}_LIB})
|
|
endif()
|
|
endforeach()
|
|
endif()
|