X-Git-Url: https://git.cworth.org/git?p=apitrace-tests;a=blobdiff_plain;f=CMakeLists.txt;h=1cd54f0da69cd31295ad939b29fb32a0e56dabe6;hp=e8820c23936f5b67ccb400819e15b2bb3613c11b;hb=892bd3001be0210549c8dd47655b253d6b2ff113;hpb=956433aa964937908b070c5f0ce9d8465e3751da diff --git a/CMakeLists.txt b/CMakeLists.txt index e8820c2..1cd54f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,6 +2,8 @@ cmake_minimum_required (VERSION 2.8) project (apitrace-tests) +include (FindPkgConfig) + # Set default built type if (NOT CMAKE_BUILD_TYPE) set (CMAKE_BUILD_TYPE Debug @@ -18,6 +20,12 @@ find_package (GLUT) find_path (GLEW_INCLUDE_DIR GL/glew.h /usr/include/GL) find_library (GLEW_glew_LIBRARY GLEW /usr/lib) +if (NOT WIN32) + pkg_check_modules (EGL egl) + pkg_check_modules (GLESV1 glesv1_cm) + pkg_check_modules (GLESV2 glesv2) +endif () + if (UNIX) link_libraries(m) endif (UNIX) @@ -66,4 +74,5 @@ endif () enable_testing() add_subdirectory (apps) +add_subdirectory (traces)