14 lines
226 B
CMake
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)
|