diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-04-16 17:24:04 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-04-17 15:58:34 +0200 |
commit | a63ba68dcb9a86f26542b0b6b87a3edcf242fd72 (patch) | |
tree | fbf794255af410c0d4482dce9c1cf8ab8e456bc2 /recipes/taglib.recipe | |
parent | e32cf68ef8bf1a328a20ace2c7e35c72fa6bb32f (diff) |
Add cross-compilation support to CMake based recipes
Diffstat (limited to 'recipes/taglib.recipe')
-rw-r--r-- | recipes/taglib.recipe | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/recipes/taglib.recipe b/recipes/taglib.recipe index 99a1877c..43c51dd5 100644 --- a/recipes/taglib.recipe +++ b/recipes/taglib.recipe @@ -5,11 +5,8 @@ class Recipe(recipe.Recipe): name = 'taglib' version = '1.7' license = 'LGPL' - configure_options = '-DWITH_MP4=ON -DWITH_ASF=ON' + configure_options = '-DWITH_MP4=ON -DWITH_ASF=ON -DWIN32=1 ' btype = BuildType.CMAKE files_libs = ['libtag', 'libtag_c'] files_devel = ['include/taglib', 'lib/pkgconfig/taglib.pc', 'lib/pkgconfig/taglib_c.pc'] - - def prepare(self): - self.configure_options += ' -DLIB_SUFFIX=%s' % self.config.lib_suffix |