forked from pqwy/notty
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yay
- Loading branch information
Showing
30 changed files
with
88 additions
and
161 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ _build | |
*.install | ||
*.native | ||
*.byte | ||
.merlin | ||
|
||
tmp | ||
*~ | ||
|
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,12 +1,14 @@ | ||
#require "uucp,uuseg,uutf" | ||
#directory "_build/src" | ||
#load "notty.cma" | ||
#load "notty_top.cma" | ||
|
||
#require "unix" | ||
#directory "_build/unix" | ||
#load "notty_unix.cma" | ||
#directory "_build/default/src" | ||
#directory "_build/default/src/.notty.objs/byte" | ||
#directory "_build/default/src-unix" | ||
#directory "_build/default/src-unix/.notty_unix.objs/byte" | ||
#directory "_build/default/src-lwt" | ||
#directory "_build/default/src-lwt/.notty_lwt.objs/byte" | ||
|
||
#require "lwt,lwt.unix" | ||
#directory "_build/lwt" | ||
#load "notty.cma" | ||
#load "notty_unix.cma" | ||
#load "notty_lwt.cma" | ||
|
||
#use "src/notty_top_init.ml" |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
(executable | ||
(name speed) | ||
(libraries notty notty.unix common unmark unmark.cli)) |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
(lang dune 1.7) | ||
(name notty) | ||
(version dev) |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
(library | ||
(name common) | ||
(modules common) | ||
(libraries notty notty.unix)) | ||
|
||
(library | ||
(name common_lwt) | ||
(modules common_lwt) | ||
(libraries common notty.lwt)) | ||
|
||
(executables | ||
(names testpatterns colors almondbread crops cursor cuts emoji inline keys | ||
letters mouse thisbig runes sierpinski rain sierpinski_lwt linear | ||
life) | ||
(modules testpatterns colors almondbread crops cursor cuts emoji inline keys | ||
letters mouse thisbig runes sierpinski rain sierpinski_lwt linear | ||
life) | ||
(libraries common common_lwt)) | ||
|
||
(alias | ||
(name ex) | ||
(package notty) | ||
(deps testpatterns.exe colors.exe almondbread.exe crops.exe cursor.exe | ||
cuts.exe emoji.exe inline.exe keys.exe letters.exe mouse.exe | ||
thisbig.exe runes.exe sierpinski.exe rain.exe sierpinski_lwt.exe | ||
linear.exe life.exe)) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
(library | ||
(public_name notty.lwt) | ||
(synopsis "Notty Lwt+Unix IO") | ||
(name notty_lwt) | ||
(wrapped false) | ||
(optional) | ||
(libraries notty notty.unix lwt lwt.unix)) |
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
(library | ||
(public_name notty.unix) | ||
(synopsis "Notty Unix IO") | ||
(name notty_unix) | ||
(wrapped false) | ||
(c_names winsize) | ||
(c_flags (-Wall -Wextra -O3)) | ||
(optional) | ||
(libraries notty unix)) | ||
|
||
(include_subdirs unqualified) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
(library | ||
(public_name notty) | ||
(synopsis "Declaring terminals") | ||
(libraries uchar uuseg uutf) | ||
(wrapped false) | ||
(modules notty)) | ||
|
||
(library | ||
(public_name notty.top) | ||
(synopsis "Notty toplevel support") | ||
(name notty_top) | ||
(wrapped false) | ||
(modules notty_top) | ||
(libraries notty compiler-libs.toplevel)) | ||
|
||
(install | ||
(section lib) | ||
(files (notty_top_init.ml as top/notty_top_init.ml))) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.