Merge pull request #183 from kiwix/no_kiwix-desktop_static

Do not try to compile kiwix-desktop on native_static.
This commit is contained in:
Matthieu Gautier 2018-06-13 18:44:14 +02:00 committed by GitHub
commit 8b8d24d662
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ elif PLATFORM.startswith('native_'):
if TRAVIS_OS_NAME == "osx":
TARGETS = ('libzim', 'zimwriterfs', 'zim-tools', 'kiwix-lib')
else:
if make_release:
if make_release or PLATFORM == 'native_static':
TARGETS = ('libzim', 'zimwriterfs', 'zim-tools', 'kiwix-lib', 'kiwix-tools')
else:
TARGETS = ('libzim', 'kiwix-lib', 'kiwix-desktop', 'zimwriterfs', 'zim-tools', 'kiwix-tools')