make compilation work on cygwin

This commit is contained in:
Ailin Nemui 2025-07-25 16:15:05 +01:00
commit df8aa42778
18 changed files with 40 additions and 26 deletions

View file

@ -2,22 +2,23 @@
subdir('lib-config')
subdir('core')
foreach s : chat_modules
subdir(s)
endforeach
subdir('fe-common')
if have_perl
subdir('perl')
endif
if have_otr
subdir('otr')
endif
subdir('fe-common' / 'core')
if want_bot
subdir('fe-none')
endif
if want_textui
subdir('fe-text')
endif
foreach s : chat_modules
subdir(s)
subdir('fe-common' / s)
endforeach
if have_perl
subdir('perl')
endif
if have_otr
subdir('otr')
endif
if want_fuzzer
subdir('fe-fuzz')
endif