20 lines
362 B
CMake
20 lines
362 B
CMake
# -*- cmake -*-
|
|
include(Linking)
|
|
include(Prebuilt)
|
|
|
|
if (WINDOWS)
|
|
use_prebuilt_binary(freeglut)
|
|
set(GLUT_LIBRARY
|
|
debug freeglut_static.lib
|
|
optimized freeglut_static.lib)
|
|
endif (WINDOWS)
|
|
|
|
if (LINUX)
|
|
FIND_LIBRARY(GLUT_LIBRARY glut)
|
|
endif (LINUX)
|
|
|
|
if (DARWIN)
|
|
include(CMakeFindFrameworks)
|
|
find_library(GLUT_LIBRARY GLUT)
|
|
endif (DARWIN)
|