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

base_types.ts:75


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

base_types.ts:63


NONE

Const NONE: string = 'none'

This constant is used by parent build descritors. The artifacts will be generated by its modules.

Defined in

base_types.ts:79


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

base_types.ts:67


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.

Defined in

base_types.ts:71