This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This section of the documentation lists the properties available on | |
# CMake cache entries: | |
# | |
# http://cmake.org/cmake/help/v2.8.12/cmake.html#section_PropertiesonCacheEntries | |
# | |
# | |
# This code demonstrates retrieving the property values from a variable or | |
# cache entry. | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# EchoRequirements | |
# | |
# A minimal project CMakeLists.txt file whose sole purpose is to spit out | |
# VTK and ITK compiler definitions, include directories and libraries to | |
# link to. | |
# | |
# This is for when you want to use VTK and ITK from a non-CMake-based | |
# project, and need to know all the stuff that CMake does for you but don't | |
# want to CMake-ify your project just to get it done today. Use the output |