在Haskell项目的cabal文件中,我们有以下部分:
C-Sources: src/A.c
, src/B.c
, ...
Includes: include/A.h
, include/B.h
, ...
不幸的是,不允许在这些部分中使用通配符(如已确认here):
-- this doesn't work:
C-Sources: src/*.c
Includes: include/*.h
问题:如何改变Setup.hs
如上所述自动包含src/*.c
和include/*.h
?