mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
fix missing render-utils dependencies
This commit is contained in:
parent
6a604ca340
commit
ecb17a61d6
1 changed files with 6 additions and 2 deletions
|
@ -5,11 +5,15 @@ setup_hifi_library(Widgets OpenGL Network Script)
|
|||
|
||||
include_glm()
|
||||
|
||||
link_hifi_libraries(shared gpu)
|
||||
link_hifi_libraries(fbx shared gpu)
|
||||
|
||||
if (WIN32)
|
||||
if (APPLE)
|
||||
find_library(GLUT GLUT)
|
||||
target_link_libraries(${TARGET_NAME} GLUT)
|
||||
else ()
|
||||
find_package(GLUT REQUIRED)
|
||||
include_directories(SYSTEM "${GLUT_INCLUDE_DIRS}")
|
||||
target_link_libraries(${TARGET_NAME} ${GLUT_LIBRARIES})
|
||||
endif ()
|
||||
|
||||
# call macro to link our dependencies and bubble them up via a property on our target
|
||||
|
|
Loading…
Reference in a new issue