Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
matrix-org
Olm
Commits
04bbd728
Commit
04bbd728
authored
Oct 12, 2018
by
Hubert Chathi
Browse files
always use files from ../include and ../build
parent
d4b2cce6
Changes
1
Hide whitespace changes
Inline
Side-by-side
python/olm_build.py
View file @
04bbd728
...
...
@@ -26,12 +26,11 @@ PATH = os.path.dirname(__file__)
DEVELOP
=
os
.
environ
.
get
(
"DEVELOP"
)
compile_args
=
[]
link_args
=
[]
compile_args
=
[
"-I../include"
]
link_args
=
[
"-L../build"
]
if
DEVELOP
and
DEVELOP
.
lower
()
in
[
"yes"
,
"true"
,
"1"
]:
compile_args
=
[
"-I../include"
]
link_args
=
[
'-Wl,-L=../build,-rpath=../build'
]
link_args
.
append
(
'-Wl,-rpath=../build'
)
ffibuilder
.
set_source
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment