mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-22 20:10:11 +02:00
14 lines
258 B
CMake
14 lines
258 B
CMake
set(TARGET_NAME gpu-gl)
|
|
setup_hifi_library(Concurrent)
|
|
link_hifi_libraries(shared gl gpu)
|
|
if (UNIX)
|
|
target_link_libraries(${TARGET_NAME} pthread)
|
|
endif(UNIX)
|
|
GroupSources("src")
|
|
|
|
target_opengl()
|
|
target_nsight()
|
|
|
|
if (NOT ANDROID)
|
|
target_glew()
|
|
endif ()
|