Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

FindLibXslt

Blame
  • FindLibXslt 213.55 KiB
    cmake version 2.8.0
    ------------------------------------------------------------------------------
    Introduction
    
    FindLibXslt - Reference of available CMake modules.
    
    ------------------------------------------------------------------------------
    Description
    
    The "cmake" executable is the CMake command-line interface.  It may be used
    to configure projects in scripts.  Project configuration settings may be
    specified on the command line with the -D option.  The -i option will cause
    cmake to interactively prompt for such settings.
    
    CMake is a cross-platform build system generator.  Projects specify their
    build process with platform-independent CMake listfiles included in each
    directory of a source tree with the name CMakeLists.txt.  Users build a
    project by using CMake to generate a build system for a native tool on their
    platform.
    
    ------------------------------------------------------------------------------
    Standard CMake Modules
    
    The following modules are provided with CMake.  They can be used with
    INCLUDE(ModuleName).
    
      CMake Modules - Modules coming with CMake, the Cross-Platform Makefile Generator.
    
    This is the documentation for the modules and scripts coming with CMake.
    Using these modules you can check the computer system for installed software
    packages, features of the compiler and the existence of headers to name just
    a few.
    
      AddFileDependencies
           ADD_FILE_DEPENDENCIES(source_file depend_files...)
    
           Adds the given files as dependencies to source_file
    
    
      BundleUtilities
            
    
           BundleUtilities.cmake
    
           A collection of CMake utility functions useful for dealing with .app
           bundles on the Mac and bundle-like directories on any OS.
    
           The following functions are provided by this script:
    
              get_bundle_main_executable
              get_dotapp_dir
              get_bundle_and_executable
              get_bundle_all_executables
              get_item_key
              clear_bundle_keys
              set_bundle_key_values
              get_bundle_keys
              copy_resolved_item_into_bundle
              fixup_bundle_item
              fixup_bundle
              copy_and_fixup_bundle
              verify_bundle_prerequisites
              verify_bundle_symlinks
              verify_app
    
           
    
           Requires CMake 2.6 or greater because it uses function, break and
           PARENT_SCOPE.  Also depends on GetPrerequisites.cmake.