Files
salmanoff/commonLibs/xcbXorg/CMakeLists.txt
T

14 lines
226 B
CMake
Raw Normal View History

2025-07-22 02:46:16 -04:00
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)