Code Search for Developers
 
 
  

cmake_uninstall.cmake.in from osgDesigner at Krugle


Show cmake_uninstall.cmake.in syntax highlighted

IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
  MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")

FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
STRING(REGEX REPLACE "\n" ";" files "${files}")
FOREACH(file ${files})
  MESSAGE(STATUS "Uninstalling \"${file}\"")
  IF(EXISTS "${file}")
    EXEC_PROGRAM(
      "@CMAKE_COMMAND@" ARGS "-E remove \"${file}\""
      OUTPUT_VARIABLE rm_out
      RETURN_VALUE rm_retval
      )
    IF("${rm_retval}" STREQUAL 0)
    ELSE("${rm_retval}" STREQUAL 0)
      MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"")
    ENDIF("${rm_retval}" STREQUAL 0)
  ELSE(EXISTS "${file}")
    MESSAGE(STATUS "File \"${file}\" does not exist.")
  ENDIF(EXISTS "${file}")
ENDFOREACH(file)



See more files for this project here

osgDesigner

osgDesigner is a graphical tool used to modify an OpenSceneGraph (OSG) scene using the osgIntrospection framework. OpenSceneGraph developpers will be able to extend osgDesigner at need using (editor | render | osgIntrospection wrapper) plugin system.

Project homepage: http://sourceforge.net/projects/osgdesigner
Programming language(s): C++,Shell Script
License: other

  FindGDAL.cmake
  FindOpenSceneGraph.cmake
  FindOpenThreads.cmake
  FindProducer.cmake
  Findosg.cmake
  FindosgCommon.cmake
  FindosgDB.cmake
  FindosgFX.cmake
  FindosgGA.cmake
  FindosgIntrospection.cmake
  FindosgParticle.cmake
  FindosgProducer.cmake
  FindosgShadow.cmake
  FindosgSim.cmake
  FindosgTerrain.cmake
  FindosgText.cmake
  FindosgUtil.cmake
  cmake_uninstall.cmake.in
  osgDesignerMacros.cmake