From d299f1de665bb8b0e0443637d873cdddcae57df6 Mon Sep 17 00:00:00 2001 From: Franck Joncourt Date: Sun, 17 Mar 2013 12:03:07 +0100 Subject: [PATCH] Add ne wdirective to setup.py in order to be able to build the python binding without having libfko installed on the system. --- python/setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/setup.py b/python/setup.py index 22c8120e..963afc26 100644 --- a/python/setup.py +++ b/python/setup.py @@ -16,6 +16,8 @@ from distutils.core import setup, Extension fko_ext = Extension( '_fko', define_macros = [('MAJOR_VERSION', '1'), ('MINOR_VERSION', '5')], + include_dirs = ['../lib/'], + library_dirs = ['../lib/.libs'], libraries = ['fko'], sources = ['fkomodule.c'] )