| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | #############################################################################  Library:   CTK# #  Copyright (c) 2010  Kitware Inc.##  Licensed under the Apache License, Version 2.0 (the "License");#  you may not use this file except in compliance with the License.#  You may obtain a copy of the License at##      http://www.commontk.org/LICENSE##  Unless required by applicable law or agreed to in writing, software#  distributed under the License is distributed on an "AS IS" BASIS,#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.#  See the License for the specific language governing permissions and#  limitations under the License.# ########################################################################################################################################################  Program:   Visualization Toolkit#  Module:    Utilities/LastConfigureStep/CMakeLists.txt##  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen##  All rights reserved.#  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.##     This software is distributed WITHOUT ANY WARRANTY; without even#     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR#     PURPOSE.  See the above copyright notice for more information.############################################################################# The commands in this directory are intended to be executed as# the end of the whole configuration process, as a "last step".# This directory is typically the last SUBDIRS in the main CMakeLists.txt.# It enable the above commands to use variables that might have been configured# in previous SUBDIRS. This is especially important when it comes to# the CONFIGURE_FILE command, since in IMMEDIATE mode that command will# use the current values of CMake variables instead of waiting until the# end of CMakeLists processing, i.e. instead of waiting until some variables# are configured in SUBDIRS.#-----------------------------------------------------------------------------# Create the CTKConfig.cmake file containing the CTK configuration.# Since it might generate configuration file dependingINCLUDE(CTKGenerateCTKConfig.cmake)
 |