blob: ac067ec110fae15732dbf2cda162d7593766c359 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
GO_LIBRARY()
SRCS(
match.go
path.go
symlink.go
)
GO_TEST_SRCS(export_test.go)
GO_XTEST_SRCS(
example_test.go
match_test.go
path_test.go
)
IF (OS_LINUX)
SRCS(
path_unix.go
symlink_unix.go
)
GO_XTEST_SRCS(
example_unix_test.go
example_unix_walk_test.go
)
ENDIF()
IF (OS_DARWIN)
SRCS(
path_unix.go
symlink_unix.go
)
GO_XTEST_SRCS(
example_unix_test.go
example_unix_walk_test.go
)
ENDIF()
IF (OS_WINDOWS)
SRCS(
path_windows.go
symlink_windows.go
)
GO_TEST_SRCS(export_windows_test.go)
GO_XTEST_SRCS(path_windows_test.go)
ENDIF()
END()
RECURSE(
)
|