summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2019-03-13 07:25:24 +0000
committerJose Fonseca <jfonseca@vmware.com>2019-03-14 10:09:16 +0000
commit7271d29fa36555bde3bcd8ebe3c0c719ee9c5c29 (patch)
tree69ef51c75b5194f91bbd10f2075b8436a966cb0b
parent3f40465ec6572faefb7087446cf8ae0de4eaaaf3 (diff)
appveyor: Fix build with CMake 3.13.3.
Newer CMake versions (in particular 3.13.3 currently used by default Appveyor machine) expects GLUT_glut_LIBRARY_RELEASE variable, instead of GLUT_glut_LIBRARY. Reviewed-by: Brian Paul <brianp@vmware.com>
-rw-r--r--appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 5f6faec85..1f8779187 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -78,7 +78,7 @@ install:
- appveyor DownloadFile https://www.khronos.org/registry/OpenGL/api/GL/glext.h -FileName glext\GL\glext.h
build_script:
-- cmake -H. -Bbuild -G "Ninja" -DGLUT_INCLUDE_DIR=%CD%\freeglut\include -DGLUT_glut_LIBRARY=%CD%\freeglut\%FREEGLUT_LIB% -DGLEXT_INCLUDE_DIR=%CD%\glext
+- cmake -H. -Bbuild -G "Ninja" -DGLUT_INCLUDE_DIR=%CD%\freeglut\include -DGLUT_glut_LIBRARY_RELEASE=%CD%\freeglut\%FREEGLUT_LIB% -DGLEXT_INCLUDE_DIR=%CD%\glext
- ninja -C build