mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 12:33:27 +02:00
duh, glut only required on win
This commit is contained in:
parent
e6d3278b59
commit
4042b8b17a
1 changed files with 4 additions and 2 deletions
|
@ -7,8 +7,10 @@ include_glm()
|
|||
|
||||
link_hifi_libraries(shared gpu)
|
||||
|
||||
find_package(GLUT REQUIRED)
|
||||
include_directories(SYSTEM "${GLUT_INCLUDE_DIRS}")
|
||||
if (WIN32)
|
||||
find_package(GLUT REQUIRED)
|
||||
include_directories(SYSTEM "${GLUT_INCLUDE_DIRS}")
|
||||
endif ()
|
||||
|
||||
# call macro to link our dependencies and bubble them up via a property on our target
|
||||
link_shared_dependencies()
|
||||
|
|
Loading…
Reference in a new issue