mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-29 04:39:53 +00:00
core: fix cabal paths (#3952)
* fixed install cabal file paths. * updated package.yaml * fix --------- Co-authored-by: Andor Kesselman <andor@magic-pro-3.local>
This commit is contained in:
parent
72082af139
commit
a5817d9feb
2 changed files with 16 additions and 10 deletions
12
package.yaml
12
package.yaml
|
@ -104,16 +104,20 @@ executables:
|
||||||
- -threaded
|
- -threaded
|
||||||
|
|
||||||
simplex-broadcast-bot:
|
simplex-broadcast-bot:
|
||||||
source-dirs: apps/simplex-broadcast-bot/src
|
source-dirs:
|
||||||
main: ../Main.hs
|
- apps/simplex-broadcast-bot
|
||||||
|
- apps/simplex-broadcast-bot/src
|
||||||
|
main: Main.hs
|
||||||
dependencies:
|
dependencies:
|
||||||
- simplex-chat
|
- simplex-chat
|
||||||
ghc-options:
|
ghc-options:
|
||||||
- -threaded
|
- -threaded
|
||||||
|
|
||||||
simplex-directory-service:
|
simplex-directory-service:
|
||||||
source-dirs: apps/simplex-directory-service/src
|
source-dirs:
|
||||||
main: ../Main.hs
|
- apps/simplex-directory-service
|
||||||
|
- apps/simplex-directory-service/src
|
||||||
|
main: Main.hs
|
||||||
dependencies:
|
dependencies:
|
||||||
- simplex-chat
|
- simplex-chat
|
||||||
ghc-options:
|
ghc-options:
|
||||||
|
|
|
@ -355,13 +355,14 @@ executable simplex-bot-advanced
|
||||||
, text >=1.2.3.0 && <1.3
|
, text >=1.2.3.0 && <1.3
|
||||||
|
|
||||||
executable simplex-broadcast-bot
|
executable simplex-broadcast-bot
|
||||||
main-is: ../Main.hs
|
main-is: Main.hs
|
||||||
|
hs-source-dirs:
|
||||||
|
apps/simplex-broadcast-bot
|
||||||
|
apps/simplex-broadcast-bot/src
|
||||||
other-modules:
|
other-modules:
|
||||||
Broadcast.Bot
|
Broadcast.Bot
|
||||||
Broadcast.Options
|
Broadcast.Options
|
||||||
Paths_simplex_chat
|
Paths_simplex_chat
|
||||||
hs-source-dirs:
|
|
||||||
apps/simplex-broadcast-bot/src
|
|
||||||
ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns -threaded
|
ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns -threaded
|
||||||
build-depends:
|
build-depends:
|
||||||
aeson ==2.2.*
|
aeson ==2.2.*
|
||||||
|
@ -481,7 +482,10 @@ executable simplex-chat
|
||||||
, text >=1.2.3.0 && <1.3
|
, text >=1.2.3.0 && <1.3
|
||||||
|
|
||||||
executable simplex-directory-service
|
executable simplex-directory-service
|
||||||
main-is: ../Main.hs
|
main-is: Main.hs
|
||||||
|
hs-source-dirs:
|
||||||
|
apps/simplex-directory-service
|
||||||
|
apps/simplex-directory-service/src
|
||||||
other-modules:
|
other-modules:
|
||||||
Directory.Events
|
Directory.Events
|
||||||
Directory.Options
|
Directory.Options
|
||||||
|
@ -489,8 +493,6 @@ executable simplex-directory-service
|
||||||
Directory.Service
|
Directory.Service
|
||||||
Directory.Store
|
Directory.Store
|
||||||
Paths_simplex_chat
|
Paths_simplex_chat
|
||||||
hs-source-dirs:
|
|
||||||
apps/simplex-directory-service/src
|
|
||||||
ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns -threaded
|
ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns -Wunused-type-patterns -threaded
|
||||||
build-depends:
|
build-depends:
|
||||||
aeson ==2.2.*
|
aeson ==2.2.*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue