File: KWWidgetsProConfig.cmake.in

package info (click to toggle)
volview 3.4-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 25,204 kB
  • sloc: cpp: 132,585; ansic: 11,612; tcl: 236; sh: 64; makefile: 25; xml: 8
file content (101 lines) | stat: -rw-r--r-- 4,319 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
##=========================================================================
## 
##   Copyright (c) Kitware, Inc.
##   All rights reserved.
##   See Copyright.txt or http://www.kitware.com/VolViewCopyright.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.
## 
##=========================================================================
#-----------------------------------------------------------------------------
#
# KWWidgetsProConfig.cmake - CMake configuration file for external projects.
#
# This file is configured by KWWidgetsPro and used by the UseKWWidgetsPro.cmake
# module to load KWWidgetsPro's settings for an external project.
@KWWidgetsPro_CONFIG_INSTALL_ONLY@
# The KWWidgetsPro version number.
SET(KWWidgetsPro_MAJOR_VERSION "@KWWidgetsPro_MAJOR_VERSION@")
SET(KWWidgetsPro_MINOR_VERSION "@KWWidgetsPro_MINOR_VERSION@")

# The libraries.
SET(KWWidgetsPro_LIBRARIES "@KWWidgetsPro_LIBRARIES@")

# The CMake macros dir.
SET(KWWidgetsPro_CMAKE_DIR "@KWWidgetsPro_CMAKE_DIR_CONFIG@")

# The configuration options.
SET(KWWidgetsPro_BUILD_SHARED_LIBS "@KWWidgetsPro_BUILD_SHARED_LIBS@")
SET(KWWidgetsPro_BUILD_TESTING "@KWWidgetsPro_BUILD_TESTING@")
SET(KWWidgetsPro_USE_LICENSE "@KWWidgetsPro_USE_LICENSE@")
SET(KWWidgetsPro_USE_Flickcurl "@KWWidgetsPro_USE_Flickcurl@")

# Installation options.
SET(KWWidgetsPro_INSTALL_DATA_DIR "@KWWidgetsPro_INSTALL_DATA_DIR@")

# The C and C++ flags added to the cmake-configured flags.
SET(KWWidgetsPro_REQUIRED_C_FLAGS
  "@KWWidgetsPro_REQUIRED_C_FLAGS@")
SET(KWWidgetsPro_REQUIRED_CXX_FLAGS
  "@KWWidgetsPro_REQUIRED_CXX_FLAGS@")
SET(KWWidgetsPro_REQUIRED_EXE_LINKER_FLAGS
  "@KWWidgetsPro_REQUIRED_EXE_LINKER_FLAGS@")
SET(KWWidgetsPro_REQUIRED_SHARED_LINKER_FLAGS
  "@KWWidgetsPro_REQUIRED_SHARED_LINKER_FLAGS@")
SET(KWWidgetsPro_REQUIRED_MODULE_LINKER_FLAGS
  "@KWWidgetsPro_REQUIRED_MODULE_LINKER_FLAGS@")

# The "use" file.
SET(KWWidgetsPro_USE_FILE "@KWWidgetsPro_USE_FILE_CONFIG@")

# The build settings file.
SET(KWWidgetsPro_BUILD_SETTINGS_FILE "@KWWidgetsPro_BUILD_SETTINGS_FILE_CONFIG@")

# The library directories.
SET(KWWidgetsPro_LIBRARY_DIRS "@KWWidgetsPro_LIBRARY_DIRS_CONFIG@")

# The runtime directories.
# Note that if KWWidgetsPro_CONFIGURATION_TYPES is set (see below) then
# these directories will be the parent directories under which there will
# be a directory of runtime binaries for each configuration type.
SET(KWWidgetsPro_RUNTIME_DIRS "@KWWidgetsPro_RUNTIME_DIRS_CONFIG@")

# The include directories.
SET(KWWidgetsPro_INCLUDE_DIRS "@KWWidgetsPro_INCLUDE_DIRS_CONFIG@")

# The library dependencies file.
IF(NOT KWWidgetsPro_NO_LIBRARY_DEPENDS AND
    EXISTS "@KWWidgetsPro_LIBRARY_DEPENDS_FILE@")
  INCLUDE("@KWWidgetsPro_LIBRARY_DEPENDS_FILE@")
ENDIF(NOT KWWidgetsPro_NO_LIBRARY_DEPENDS AND
  EXISTS "@KWWidgetsPro_LIBRARY_DEPENDS_FILE@")

# The KWCommonPro options.
SET(KWWidgetsPro_KWCommonPro_DIR "@KWWidgetsPro_KWCommonPro_DIR_CONFIG@")

# The KWWidgets options.
SET(KWWidgetsPro_KWWidgets_DIR "@KWWidgetsPro_KWWidgets_DIR_CONFIG@")

# The KWLicense options.
SET(KWWidgetsPro_KWLicense_DIR "@KWWidgetsPro_KWLicense_DIR_CONFIG@")

# The Flickcurl options.
SET(KWWidgetsPro_Flickcurl_DIR "@KWWidgetsPro_Flickcurl_DIR_CONFIG@")

# An install tree always provides one build configuration.
# A build tree may provide either one or multiple build
# configurations depending on the CMake generator used. Since
# this project can be used either from a build tree or an install tree it
# is useful for outside projects to know the configurations available.
# If this KWWidgetsProConfig.cmake is in an install tree
# KWWidgetsPro_CONFIGURATION_TYPES will be empty and KWWidgetsPro_BUILD_TYPE
# will be set to the value of CMAKE_BUILD_TYPE used to build
# KWWidgetsPro. If KWWidgetsProConfig.cmake is in a build tree
# then KWWidgetsPro_CONFIGURATION_TYPES and KWWidgetsPro_BUILD_TYPE will
# have values matching CMAKE_CONFIGURATION_TYPES and CMAKE_BUILD_TYPE
# for that build tree (only one will ever be set).
SET(KWWidgetsPro_CONFIGURATION_TYPES @KWWidgetsPro_CONFIGURATION_TYPES_CONFIG@)
SET(KWWidgetsPro_BUILD_TYPE @KWWidgetsPro_BUILD_TYPE_CONFIG@)