ya.make 911 B

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