-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.properties.default
42 lines (36 loc) · 2.23 KB
/
build.properties.default
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
#################################################
# These properties are used by the ant scripts under the Sesame directory
tomcat=/Program Files/Apache Software Foundation/Tomcat 5.5
sesameAppName=sesame
kbSailStressTestDataDir=data
#################################################
# The following are the build parameters for the native components on various
# supported platforms. All uncommented values for nativeBuildParams that are
# valid on the current platform will be used. The options as presented in this
# file (build.properties.default) are the ones used for building "official"
# releases, so please do not change them simply to suit your current development
# needs. For temporary changes, you can tinker with what gets built by creating
# a copy of this file called "build.properties" and commenting and uncommenting
# various lines. The toolset parameter can take on the following values:
#
# msvc for Microsoft Visual Studio 2017
# clang for clang on MacOS 10.7 and later
# gcc for GCC on CentOS or Ubuntu Linux
#nativeBuildParams=toolset=msvc address-model=64 variant=debug
#nativeBuildParams=toolset=msvc address-model=32 variant=debug
nativeBuildParams=toolset=msvc address-model=64 variant=release
nativeBuildParams=toolset=msvc address-model=32 variant=release
#nativeBuildParams=toolset=clang address-model=64 architecture=arm+x86 variant=debug
nativeBuildParams=toolset=clang address-model=64 architecture=arm+x86 variant=release
#nativeBuildParams=toolset=clang address-model=64 architecture=x86 variant=debug
#nativeBuildParams=toolset=clang address-model=64 architecture=x86 variant=release
#nativeBuildParams=toolset=clang address-model=64 architecture=arm variant=debug
#nativeBuildParams=toolset=clang address-model=64 architecture=arm variant=release
#nativeBuildParams=toolset=gcc address-model=64 variant=debug
nativeBuildParams=toolset=gcc address-model=64 variant=release
#################################################
# Uncomment this line to cause the build to skip the native unit tests. (Only
# do this in "build.properties" -- "build.properties.default" should always
# contain the official release build parameters, and such a release should
# always run the unit tests.)
#skipNativeUnitTest=This value does not matter.