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
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
[buildout]
parts = env flandmark external tests python
eggs = bob
flandmark
xbob.flandmark
newest = false
; 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):
ext_name,
sources=sources,
language="c++",
include_dirs=bob['include_dirs'] + ocv['include_dirs'],
library_dirs=bob['library_dirs'] + ocv.get('library_dirs', []),
runtime_library_dirs=bob['library_dirs'] + ocv.get('library_dirs', []),
libraries=bob['libraries'] + ocv['libraries'],
include_dirs=bob.get('include_dirs',[]) + ocv.get('include_dirs',[]),
library_dirs=bob.get('library_dirs',[]) + ocv.get('library_dirs', []),
runtime_library_dirs=bob.get('library_dirs',[]) + ocv.get('library_dirs', []),
libraries=bob.get('libraries',[]) + ocv.get('libraries',[]),
)
setup(
name="xbob.flandmark",
version="1.0.0",
version="1.0.1",
description="Python bindings to the flandmark keypoint localization library",
license="GPLv3",
author='Andre Anjos',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment