blob: b54dd99f1f3508335c1156b9f6acb4a763c645e3 (
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
|
default_compiler clang
soname_pattern_base "lib{libname}.dylib"
soname_pattern_abi "lib{libname}.{abi_rev}.dylib"
soname_pattern_patch "lib{libname}.{abi_rev}.{version_minor}.{version_patch}.dylib"
# In order that these executables work from the build directory,
# we need to change the install names
so_post_link_command "install_name_tool -change '$(INSTALLED_LIB_DIR)/{soname_abi}' '@executable_path/{soname_abi}' $@"
doc_dir doc
<target_features>
posix1
posix_mlock
arc4random
dev_random
commoncrypto
sockets
threads
filesystem
apple_keychain
</target_features>
<aliases>
macos
macosx
osx
</aliases>
|