Files
salmanoff/commonLibs/xcbXorg/CMakeLists.txt
T
2025-07-22 02:46:16 -04:00

14 lines
226 B
CMake

add_library(xcbXorg SHARED
xcbXorg.cpp
)
target_include_directories(xcbXorg PUBLIC
${XCB_INCLUDE_DIRS}
)
target_link_libraries(xcbXorg
${XCB_LIBRARIES}
)
# Install rules
install(TARGETS xcbXorg DESTINATION lib)