Don't try linking libclearlooks files with mingw build

I believe this is unnecessary for cross and native builds
This commit is contained in:
Tim Mayberry 2015-02-19 20:33:46 +10:00
parent 47b1c2889c
commit 5476b48539

View File

@ -42,7 +42,7 @@ def build(bld):
# Bit of a hack: make a symlink to the .dylib that meets GTK's criteria for finding it (namely that the library must be a *.so
# and that it must reside in a directory called `engines')
obj = bld(target = 'engines', rule = 'mkdir -p ${TGT} && rm -f ${TGT}/libclearlooks.so && ln -s ../libclearlooks.dylib ${TGT}/libclearlooks.so')
else:
elif bld.env['build_target'] != 'mingw':
# this is a hack so that running ./ardev will work, since it sets GTK_PATH to include this dir and GTK will search {thisdir}/engines
obj = bld(target = 'engines', rule = 'mkdir -p ${TGT} && rm -f ${TGT}/libclearlooks.so && ln -s ../libclearlooks.so ${TGT}/libclearlooks.so')