Does not try and find the math library under Visual Studio compilers, where it is not needed.

pull/601/head
Russ Taylor 2015-07-04 16:08:56 -04:00
parent 9474bbc8e9
commit 8d07cfe1f3
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
FIND_PACKAGE(OpenGL)
FIND_PACKAGE(GLUT)
IF ( MSVC )
SET(M_LIB)
ELSE ( MSVC )
find_library(M_LIB m)
ENDIF ( MSVC )
IF ( NOT GLUT_FOUND )
IF ( MSVC )