Fixed indentation characters in CMakeLists.txt

This commit is contained in:
Boris Pek 2016-07-08 08:07:06 +03:00
parent bc5471a2f8
commit c1efb69d4e

View File

@ -428,18 +428,18 @@ ELSE()
# or special-cased FreeGLUT long ago (e.g. .so.4 on OpenBSD), so # or special-cased FreeGLUT long ago (e.g. .so.4 on OpenBSD), so
# the lack of support for current:revision:age in CMake should # the lack of support for current:revision:age in CMake should
# not be a problem. # not be a problem.
# - the output library should be named glut so it'll be linkable with -lglut # - the output library should be named glut so it'll be linkable with -lglut
# (unless FREEGLUT_REPLACE_GLUT is false). # (unless FREEGLUT_REPLACE_GLUT is false).
# - the shared library should link to the dependency libraries so that the user # - the shared library should link to the dependency libraries so that the user
# won't have to link them explicitly (they shouldn't have to know that we depend # won't have to link them explicitly (they shouldn't have to know that we depend
# on Xrandr or Xxf86vm) # on Xrandr or Xxf86vm)
IF(FREEGLUT_GLES) IF(FREEGLUT_GLES)
SET(LIBNAME freeglut-gles) SET(LIBNAME freeglut-gles)
ELSE() ELSE()
IF(FREEGLUT_REPLACE_GLUT) IF(FREEGLUT_REPLACE_GLUT)
SET(LIBNAME glut) SET(LIBNAME glut)
ENDIF() ENDIF()
ENDIF() ENDIF()
IF(FREEGLUT_BUILD_SHARED_LIBS) IF(FREEGLUT_BUILD_SHARED_LIBS)
SET_TARGET_PROPERTIES(freeglut PROPERTIES VERSION ${SO_MAJOR}.${SO_MINOR}.${SO_REV} SOVERSION ${SO_MAJOR} OUTPUT_NAME ${LIBNAME}) SET_TARGET_PROPERTIES(freeglut PROPERTIES VERSION ${SO_MAJOR}.${SO_MINOR}.${SO_REV} SOVERSION ${SO_MAJOR} OUTPUT_NAME ${LIBNAME})
@ -478,7 +478,7 @@ IF(FREEGLUT_BUILD_SHARED_LIBS)
IF(INSTALL_PDB) IF(INSTALL_PDB)
INSTALL(FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Debug/freeglut${CMAKE_DEBUG_POSTFIX}.pdb INSTALL(FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Debug/freeglut${CMAKE_DEBUG_POSTFIX}.pdb
DESTINATION bin DESTINATION bin
CONFIGURATIONS Debug CONFIGURATIONS Debug
COMPONENT Devel) COMPONENT Devel)
ENDIF() ENDIF()
ENDIF() ENDIF()