ArtifactTypes - gottabe-io/gottabe-plugin-dev GitHub Wiki
gottabe-plugin-dev / Exports / ArtifactTypes
Namespace: ArtifactTypes
This namespace has constants for all artifact types that can be generated by a build.
Table of contents
Variables
Variables
DRIVER
• Const DRIVER: string = 'driver'
The constant for the artifact type driver.
Defined in
EXECUTABLE
• Const EXECUTABLE: string = 'executable'
The constant for the artifact type executable. It means that the result of the build is going to be a executable file.
Defined in
NONE
• Const NONE: string = 'none'
This constant is used by parent build descritors. The artifacts will be generated by its modules.
Defined in
SHARED_LIBRARY
• Const SHARED_LIBRARY: string = 'shared_library'
The constant for the artifact type shared library. It means that the result of the build is going to be a shared library, a Dll in windows or a So file in linux.
Defined in
STATIC_LIBRARY
• Const STATIC_LIBRARY: string = 'static library'
The constant for the artifact type executable. It means that the result of the build is going to be a static library.