Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create cabal.project #400

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages:
*.cabal
14 changes: 7 additions & 7 deletions ihp.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ common shared-properties
, StandaloneDeriving
ghc-options: -funfolding-use-threshold=16 -optc-O3 -funbox-strict-fields -fconstraint-solver-iterations=100 -fexpose-all-unfoldings -flate-dmd-anal -fspec-constr-keen -fspecialise-aggressively -fstatic-argument-transformation -fmax-worker-args=200 -threaded

library IHPFramework
library
import: shared-properties
hs-source-dirs: .
exposed-modules:
Expand Down Expand Up @@ -222,36 +222,36 @@ library IHPFramework

executable RunDevServer
import: shared-properties
build-depends: IHPFramework
build-depends: ihp
hs-source-dirs: exe
main-is: IHP/IDE/DevServer.hs

executable new-application
import: shared-properties
build-depends: IHPFramework
build-depends: ihp
hs-source-dirs: exe
main-is: IHP/CLI/NewApplication.hs

executable build-generated-code
import: shared-properties
build-depends: IHPFramework
build-depends: ihp
hs-source-dirs: exe
main-is: IHP/CLI/BuildGeneratedCode.hs

executable new-controller
import: shared-properties
build-depends: IHPFramework
build-depends: ihp
hs-source-dirs: exe
main-is: IHP/CLI/NewController.hs

executable delete-controller
import: shared-properties
build-depends: IHPFramework
build-depends: ihp
hs-source-dirs: exe
main-is: IHP/CLI/DeleteController.hs

executable new-script
import: shared-properties
build-depends: IHPFramework
build-depends: ihp
hs-source-dirs: exe
main-is: IHP/CLI/NewScript.hs