aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattn/go-isatty/ya.make
blob: 6f52f44dd0856e8f26d5943e5b326337e4880d75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
GO_LIBRARY()

LICENSE(MIT)

SRCS(
    doc.go
)

GO_XTEST_SRCS(example_test.go)

IF (OS_LINUX)
    SRCS(
        isatty_tcgets.go
    )

    GO_TEST_SRCS(isatty_others_test.go)
ENDIF()

IF (OS_DARWIN)
    SRCS(
        isatty_bsd.go
    )

    GO_TEST_SRCS(isatty_others_test.go)
ENDIF()

IF (OS_WINDOWS)
    SRCS(
        isatty_windows.go
    )

    GO_TEST_SRCS(isatty_windows_test.go)
ENDIF()

END()

RECURSE(
    gotest
)