Skip to content
Snippets Groups Projects
Commit 5a1fe74d authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fixes to compile on systems with Bob installed by adminstrator, centrally

parent ba45bb6b
Branches
Tags
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
[buildout] [buildout]
parts = env flandmark external tests python parts = env flandmark external tests python
eggs = bob eggs = bob
flandmark xbob.flandmark
newest = false newest = false
; Path to Bob's root - No need setting this if Bob is installed centrally ; Path to Bob's root - No need setting this if Bob is installed centrally
......
...@@ -85,16 +85,16 @@ def setup_bob_extension(ext_name, sources): ...@@ -85,16 +85,16 @@ def setup_bob_extension(ext_name, sources):
ext_name, ext_name,
sources=sources, sources=sources,
language="c++", language="c++",
include_dirs=bob['include_dirs'] + ocv['include_dirs'], include_dirs=bob.get('include_dirs',[]) + ocv.get('include_dirs',[]),
library_dirs=bob['library_dirs'] + ocv.get('library_dirs', []), library_dirs=bob.get('library_dirs',[]) + ocv.get('library_dirs', []),
runtime_library_dirs=bob['library_dirs'] + ocv.get('library_dirs', []), runtime_library_dirs=bob.get('library_dirs',[]) + ocv.get('library_dirs', []),
libraries=bob['libraries'] + ocv['libraries'], libraries=bob.get('libraries',[]) + ocv.get('libraries',[]),
) )
setup( setup(
name="xbob.flandmark", name="xbob.flandmark",
version="1.0.0", version="1.0.1",
description="Python bindings to the flandmark keypoint localization library", description="Python bindings to the flandmark keypoint localization library",
license="GPLv3", license="GPLv3",
author='Andre Anjos', author='Andre Anjos',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment