You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
24 lines
487 B
# Test framework cmake file |
|
|
|
# C integration library |
|
add_subdirectory(qphelper) |
|
|
|
# Common test util (tcutil). |
|
add_subdirectory(common) |
|
|
|
# Common OpenGL utilities |
|
add_subdirectory(opengl) |
|
|
|
# EGL utilities |
|
add_subdirectory(egl) |
|
|
|
if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/randomshaders) |
|
add_subdirectory(randomshaders) |
|
endif () |
|
|
|
if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/referencerenderer) |
|
add_subdirectory(referencerenderer) |
|
endif () |
|
|
|
# Platform library |
|
add_subdirectory(platform)
|
|
|