diff options
Diffstat (limited to 'krpc.cabal')
-rw-r--r-- | krpc.cabal | 24 |
1 files changed, 17 insertions, 7 deletions
@@ -42,18 +42,28 @@ library | |||
42 | 42 | ||
43 | 43 | ||
44 | 44 | ||
45 | 45 | test-suite test-client | |
46 | executable exsample-client | 46 | type: exitcode-stdio-1.0 |
47 | main-is: Client.hs | 47 | main-is: Client.hs |
48 | other-modules: Shared | 48 | other-modules: Shared |
49 | build-depends: base == 4.*, krpc, bytestring | 49 | build-depends: base == 4.* |
50 | hs-source-dirs: examples | 50 | , bytestring |
51 | , krpc | ||
52 | |||
53 | , HUnit | ||
54 | , test-framework | ||
55 | , test-framework-hunit | ||
51 | 56 | ||
52 | executable exsample-server | 57 | hs-source-dirs: tests |
58 | |||
59 | executable test-server | ||
53 | main-is: Server.hs | 60 | main-is: Server.hs |
54 | other-modules: Shared | 61 | other-modules: Shared |
55 | build-depends: base == 4.*, krpc, bytestring | 62 | build-depends: base == 4.* |
56 | hs-source-dirs: examples | 63 | , bytestring |
64 | , krpc | ||
65 | |||
66 | hs-source-dirs: tests | ||
57 | 67 | ||
58 | 68 | ||
59 | 69 | ||