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
bob
bob.extension
Commits
e2d18d4c
Commit
e2d18d4c
authored
Aug 26, 2014
by
Manuel Günther
Browse files
Fixed include directory in Library builds; fixed tests.
parent
0a0a0f23
Changes
2
Hide whitespace changes
Inline
Side-by-side
bob/extension/__init__.py
View file @
e2d18d4c
...
...
@@ -506,7 +506,8 @@ class Library (Extension):
self
.
c_sub_directory
=
os
.
path
.
join
(
*
(
name_split
[:
-
1
]))
self
.
c_sources
=
sources
self
.
c_version
=
version
self
.
c_include_directories
=
[
os
.
path
.
join
(
self
.
c_package_directory
,
self
.
c_sub_directory
,
'include'
)]
+
include_dirs
self
.
c_self_include_directory
=
os
.
path
.
join
(
self
.
c_package_directory
,
self
.
c_sub_directory
,
'include'
)
self
.
c_include_directories
=
[
self
.
c_self_include_directory
]
+
include_dirs
self
.
c_system_include_directories
=
system_include_dirs
self
.
c_libraries
=
libraries
[:]
self
.
c_library_directories
=
library_dirs
[:]
...
...
@@ -609,7 +610,7 @@ class build_ext(_build_ext):
ext
.
compile
(
self
.
build_lib
)
libs
=
[
ext
.
c_name
]
lib_dirs
=
[
ext
.
c_target_directory
]
include_dirs
=
[
ext
.
c_include_director
ies
[
0
]
]
include_dirs
=
[
ext
.
c_
self_
include_director
y
]
# set the DEFAULT library path and include path for all other extensions
for
other_ext
in
self
.
extensions
:
...
...
bob/extension/test_cmake.py
View file @
e2d18d4c
...
...
@@ -56,7 +56,6 @@ def test_cmake_list():
assert
lines
[
index
+
1
].
find
(
'cmake_test.cpp'
)
>=
0
index
=
_find
(
lines
,
'set_target_properties'
)
assert
lines
[
index
].
find
(
'3.2'
)
>=
0
assert
lines
[
index
+
1
].
find
(
'test_target'
)
>=
0
assert
lines
[
_find
(
lines
,
'target_link_libraries'
)].
find
(
'some_library'
)
>=
0
...
...
@@ -68,7 +67,7 @@ def test_cmake_list():
def
test_library
():
old_dir
=
os
.
getcwd
()
temp_dir
=
tempfile
.
mkdtemp
(
prefix
=
"bob_extension_test_"
)
target_dir
=
os
.
path
.
join
(
temp_dir
,
'target'
)
target_dir
=
os
.
path
.
join
(
temp_dir
,
'build'
,
'lib'
,
'target'
)
# copy test file to temp directory
shutil
.
copyfile
(
pkg_resources
.
resource_filename
(
__name__
,
'test_documentation.cpp'
),
os
.
path
.
join
(
temp_dir
,
'test_documentation.cpp'
))
os
.
chdir
(
temp_dir
)
...
...
@@ -81,19 +80,18 @@ def test_library():
)
# compile
compile_dir
=
os
.
path
.
join
(
temp_dir
,
'build'
)
compile_dir
=
os
.
path
.
join
(
temp_dir
,
'build'
,
'lib'
)
os
.
makedirs
(
compile_dir
)
os
.
makedirs
(
target_dir
)
library
.
compile
(
compile_dir
)
# check that the library was generated sucessfully
if
platform
.
system
()
==
'Darwin'
:
lib_name
=
'libbob_cmake_test
%s
.dylib'
lib_name
=
'libbob_cmake_test.dylib'
else
:
lib_name
=
'libbob_cmake_test.so
%s
'
lib_name
=
'libbob_cmake_test.so'
assert
os
.
path
.
exists
(
os
.
path
.
join
(
target_dir
,
lib_name
%
""
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
target_dir
,
lib_name
%
".3"
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
target_dir
,
lib_name
%
".3.2"
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
target_dir
,
lib_name
))
os
.
chdir
(
old_dir
)
...
...
Write
Preview
Supports
Markdown
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