소스 검색

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

Russ Taylor 10 년 전
부모
커밋
8d07cfe1f3
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      samples/SimpleOpenGL/CMakeLists.txt

+ 5 - 1
samples/SimpleOpenGL/CMakeLists.txt

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