-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCPackSourceConfig.cmake.in
More file actions
50 lines (48 loc) · 2.65 KB
/
CPackSourceConfig.cmake.in
File metadata and controls
50 lines (48 loc) · 2.65 KB
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
# Copyright 2008 28msec, 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.apache.org/licenses/LICENSE-2.0
#
# 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.
#
SET(CPACK_PACKAGE_VERSION_MAJOR @LIBAWS_MAJOR_VERSION@)
SET(CPACK_PACKAGE_VERSION_MINOR @LIBAWS_MINOR_VERSION@)
SET(CPACK_PACKAGE_VERSION_PATCH @LIBAWS_PATCH_VERSION@)
SET(CPACK_CMAKE_GENERATOR "Unix Makefiles")
SET(CPACK_GENERATOR "TGZ;TZ")
SET(CPACK_IGNORE_FILES "dist/;build/;buildopt/;/CVS/;/\\.svn/;\\.swp$;\\.#;/#")
SET(CPACK_INSTALLED_DIRECTORIES "@CMAKE_SOURCE_DIR@;/")
SET(CPACK_INSTALL_CMAKE_PROJECTS "")
SET(CPACK_MODULE_PATH "")
SET(CPACK_NSIS_DISPLAY_NAME "libaws @LIBAWS_MAJOR_VERSION@.@LIBAWS_MINOR_VERSION@.@LIBAWS_PATCH_VERSION@")
SET(CPACK_OUTPUT_CONFIG_FILE "@CMAKE_BINARY_DIR@/CPackConfig.cmake")
SET(CPACK_PACKAGE_DESCRIPTION_FILE "@CMAKE_SOURCE_DIR@/README.txt")
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "libaws - A Amazon Web Services C++ Library")
SET(CPACK_PACKAGE_EXECUTABLES "s3")
SET(CPACK_PACKAGE_NAME "libaws")
SET(CPACK_PACKAGE_CONTACT "matthias.brantner@28msec.com")
SET(CPACK_PACKAGE_VENDOR "28msec, Inc.")
SET(CPACK_PACKAGE_VERSION "@LIBAWS_MAJOR_VERSION@.@LIBAWS_MINOR_VERSION@.@LIBAWS_PATCH_VERSION@")
SET(CPACK_PACKAGE_FILE_NAME "libaws-@LIBAWS_MAJOR_VERSION@.@LIBAWS_MINOR_VERSION@.@LIBAWS_PATCH_VERSION@")
SET(CPACK_PACKAGE_VERSION_MAJOR "@CPACK_PACKAGE_VERSION_MAJOR@")
SET(CPACK_PACKAGE_VERSION_MINOR "@CPACK_PACKAGE_VERSION_MINOR@")
SET(CPACK_PACKAGE_VERSION_PATCH "@CPACK_PACKAGE_VERSION_PATCH@")
SET(CPACK_PACKAGE_INSTALL_DIRECTORY "libaws @LIBAWS_MAJOR_VERSION@.@LIBAWS_MINOR_VERSION@")
SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "libaws ${CPACK_PACKAGE_VERSION}")
SET(CPACK_RESOURCE_FILE_LICENSE "@CMAKE_SOURCE_DIR@/LICENSE.txt")
SET(CPACK_SOURCE_GENERATOR "TGZ;TZ")
SET(CPACK_SOURCE_IGNORE_FILES "dist/;build*/;/CVS/;/\\.svn/;\\.swp$;\\.#;/#")
SET(CPACK_SOURCE_INSTALLED_DIRECTORIES "@CMAKE_SOURCE_DIR@;/")
SET(CPACK_SOURCE_OUTPUT_CONFIG_FILE "@CMAKE_BINARY_DIR@/CPackSourceConfig.cmake")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "libaws-src_@LIBAWS_MAJOR_VERSION@.@LIBAWS_MINOR_VERSION@.@LIBAWS_PATCH_VERSION@")
SET(CPACK_SOURCE_STRIP_FILES "")
SET(CPACK_STRIP_FILES "")
SET(CPACK_DEBIAN_PACKAGE_NAME "libaws")
SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libcurl3-dev, libcurl4-openssl-dev, libxml2-dev")