Skip to content

Commit

Permalink
spec: targets: move library keys to the other's place
Browse files Browse the repository at this point in the history
Signed-off-by: Enrico Weigelt, metux IT consult <[email protected]>
  • Loading branch information
metux committed Dec 10, 2023
1 parent 961c748 commit 369e21d
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions spec/target/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@ const (
KeyInstallPackage = Key("install/package")
KeyInstallPerm = Key("install/perm")

// library main
KeyHeaders = Key("headers")
KeyLibraryName = Key("library/name")
KeyStaticLib = Key("static::file")

// library devlink
KeyLinkTarget = Key("target")

KeySource = Key("source")
KeySourceDir = Key("source/dir")
KeySourceSuffix = Key("source/suffix")
Expand All @@ -52,11 +44,17 @@ const (
KeyLinkBoth = Key("link/both")
)

// libraries
// libraries (main)
const (
// pkgconf ID for internal libs
KeyLibraryPkgId = Key("library/pkgid")
KeyLibraryMapFile = Key("library/mapfile")
KeyHeaders = Key("headers")
KeyLibraryName = Key("library/name")
KeyStaticLib = Key("static::file")

// library devlink
KeyLinkTarget = Key("target")
)

// internal builder configuration
Expand Down

0 comments on commit 369e21d

Please sign in to comment.