blob: 1a2758ad0f03aa4f9e9e00ba2055f022752eca12 (
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
|
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)
|