blob: 1db0a8d4a51e360f1993a53e8b54a52f583ff4b3 (
plain)
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
|
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
iceVersion = 3.7.0
//
// Select an installation base directory. The directory will be created
// if it does not exist. If this property is not set the default will be
// used. Default values are:
// - Windows: %SystemDrive%\Ice-${iceVersion}
// - Non Windows /opt/Ice-${iceVersion}
//
prefix =
//
// Define debug as true if you want to build with debug information,
// false otherwise.
//
debug = true
//
// Windows specific options
//
//
// The platform uses by the C++ builds, supported values are `x64` and `Win32`,
// that is required to locate the slice2java compiler in the platform depend
// directory.
//
cppPlatform =
//
// The configuration uses by the C++ builds, supported values are `Debug` and `Release`,
// that is required to locate the slice2java compiler in the configuration depend
// directory.
//
cppConfiguration =
//
// Gradle build properties
//
org.gradle.daemon = true
org.gradle.parallel = true
//
// Package build properties
//
DESTDIR =
|