ya.make 928 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. GO_LIBRARY()
  2. LICENSE(Apache-2.0)
  3. VERSION(v1.8.1)
  4. SRCS(
  5. active_help.go
  6. args.go
  7. bash_completions.go
  8. bash_completionsV2.go
  9. cobra.go
  10. command.go
  11. completions.go
  12. fish_completions.go
  13. flag_groups.go
  14. powershell_completions.go
  15. shell_completions.go
  16. zsh_completions.go
  17. )
  18. GO_TEST_SRCS(
  19. active_help_test.go
  20. args_test.go
  21. bash_completionsV2_test.go
  22. bash_completions_test.go
  23. cobra_test.go
  24. command_test.go
  25. completions_test.go
  26. fish_completions_test.go
  27. flag_groups_test.go
  28. powershell_completions_test.go
  29. zsh_completions_test.go
  30. )
  31. IF (OS_LINUX)
  32. SRCS(
  33. command_notwin.go
  34. )
  35. ENDIF()
  36. IF (OS_DARWIN)
  37. SRCS(
  38. command_notwin.go
  39. )
  40. ENDIF()
  41. IF (OS_WINDOWS)
  42. SRCS(
  43. command_win.go
  44. )
  45. ENDIF()
  46. END()
  47. RECURSE(
  48. #cobra disabled because of dependency on viper
  49. #doc disabled because of broken dependency
  50. gotest
  51. )