blob: 323ef9db1fb1bbfe351fd01fd34be05a4e759f3a [file] [log] [blame]
Courtney Goeltzenleuchter3f2606d2014-10-13 17:51:58 -06001pkg_check_modules(XCB REQUIRED xcb)
2if (NOT XCB_FOUND)
3 message(FATAL_ERROR "xcb not found")
Chia-I Wuc19795a2014-09-13 11:12:55 +08004endif()
Courtney Goeltzenleuchter3f2606d2014-10-13 17:51:58 -06005
6include_directories (
7 ${XCB_INCLUDE_DIRS}
8 "${PROJECT_SOURCE_DIR}/icd/common"
9 )
10
11link_directories(${XCB_LIBRARY_DIRS})
12link_libraries(${XCB_LIBRARIES} XGL)
13
14add_executable(tri tri.c)
15target_link_libraries(tri)