forked from datalogics-robb/zlib-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlproject.yaml
116 lines (99 loc) · 3.73 KB
/
dlproject.yaml
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Config file for the project. Used by the Invoke tasks, primarily.
config:
# Basic configuration variables
global:
# Base configurations, may be overridden by platform
# Conan configuration. `conan config install` installs configuration file from this URL.
# See: https://docs.conan.io/en/latest/reference/commands/consumer/config.html#conan-config-install
# This is usually a pointer to a Git repo, from which it clones the default branch
config_url: [email protected]:datalogics/conan-config.git
# Conan profile that's used to configure the compiler
# default is the profile Conan makes in the user's home directory
profile: default
# Multiple build configurations in the IDE
multi: false
# Regex that indicates a release branch
# In this project, all branches are eligible for release
stable_branch_pattern: .*
# Which dependencies are built
build:
- missing
# If these patterns match a dependency package reference, that package is forced to be built.
force_build_patterns: []
# CMake project generator
# Set this based on the build system the project uses
# (on Mac, this may be overridden to Xcode if bootstrap-xcode is run)
cmake_generator: Unix Makefiles
# options for the ConanMultiPackager
# These state which compilers and architectures are built when doing conan.package
packager:
apple_clang_versions:
# quirk: must be string
- "9.1"
visual_versions:
# Visual Studio
# quirk: must be integer
- 14
- 15
gcc_versions:
# quirk: must be string
- "7"
shared:
# Permitted states for the shared option.
# This is how to build it only static
# - True
- False
# Configs based on platform information
#
# Keys can be (and are merged in this order)
#
# system
# system-machine
# system-version
# system-version-machine
#
# Where:
# system is macos, windows, or the name of the linux distribution (redhat includes centos)
# version is the major version number (major.minor on macos)
# machine is the processor architecture, i.e. x86_64
#
# items from global and modify them here.
# When merging:
# Dictionary keys override the base
# Lists are appended
macos:
profile: apple-clang-9.1-macos-10.7
packager:
archs:
# It's really a universal architecture, but the packager needs an arch
- x86_64
redhat:
# Use the RedHat Devtoolset 7 on Linux
profile: devtoolset-7
# Force building certain references when the binaries may not be
# reliable upstream.
# Note the ability to use the username/channel;
# when these are uploaded to datalogics/stable, they don't need to
# be rebuilt.
force_build_patterns:
- boost_*/1.66.0@bincrafters/stable
- boost_build/*
# boost_build has to be built because of glibc incompatibilities
build:
- boost_build
packager:
archs:
- x86_64
- x86
windows:
profile: visual-studio-14
cmake_generator: Visual Studio 14 2015 Win64
multi: true
packager:
archs:
- x86_64
- x86
byhost:
# Configs based on hostname.
# These are applied last. Consider this for only the most extreme cases
kamcentos6: