-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from hammerlab/smondet-clean-up
Clean up & minor fixes
- Loading branch information
Showing
24 changed files
with
818 additions
and
1,018 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
version=0.19.0 | ||
profile=compact |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
(lang dune 1.11) | ||
(lang dune 2.8) | ||
(name genspio) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,36 @@ | ||
(executable (name downloader) (libraries genspio base fmt)(modules downloader)) | ||
(executable (name vm_tester) (libraries genspio base fmt)(modules vm_tester)) | ||
(executable (name service_composer) (libraries unix genspio base fmt)(modules service_composer)) | ||
(executable (name multigit) (libraries unix genspio base fmt)(modules multigit)) | ||
(executable (name small) (libraries genspio base fmt)(modules small)) | ||
(rule (targets small_examples.ml)(deps small.exe)(action (progn | ||
(run ./small.exe small_examples.ml)))) | ||
(executable (name small_examples) (libraries genspio tests base fmt)(modules small_examples)) | ||
(executable | ||
(name downloader) | ||
(libraries genspio base fmt) | ||
(modules downloader)) | ||
|
||
(executable | ||
(name vm_tester) | ||
(libraries genspio base fmt) | ||
(modules vm_tester)) | ||
|
||
(executable | ||
(name service_composer) | ||
(libraries unix genspio base fmt) | ||
(modules service_composer)) | ||
|
||
(executable | ||
(name multigit) | ||
(libraries unix genspio base fmt) | ||
(modules multigit)) | ||
|
||
(executable | ||
(name small) | ||
(libraries genspio base fmt) | ||
(modules small)) | ||
|
||
(rule | ||
(targets small_examples.ml) | ||
(deps small.exe) | ||
(action | ||
(progn | ||
(run ./small.exe small_examples.ml)))) | ||
|
||
(executable | ||
(name small_examples) | ||
(libraries genspio tests base fmt) | ||
(modules small_examples)) |
Oops, something went wrong.