Courtney Goeltzenleuchter | 3f2606d | 2014-10-13 17:51:58 -0600 | [diff] [blame^] | 1 | pkg_check_modules(XCB REQUIRED xcb) |
| 2 | if (NOT XCB_FOUND) |
| 3 | message(FATAL_ERROR "xcb not found") |
Chia-I Wu | c19795a | 2014-09-13 11:12:55 +0800 | [diff] [blame] | 4 | endif() |
Courtney Goeltzenleuchter | 3f2606d | 2014-10-13 17:51:58 -0600 | [diff] [blame^] | 5 | |
| 6 | include_directories ( |
| 7 | ${XCB_INCLUDE_DIRS} |
| 8 | "${PROJECT_SOURCE_DIR}/icd/common" |
| 9 | ) |
| 10 | |
| 11 | link_directories(${XCB_LIBRARY_DIRS}) |
| 12 | link_libraries(${XCB_LIBRARIES} XGL) |
| 13 | |
| 14 | add_executable(tri tri.c) |
| 15 | target_link_libraries(tri) |