-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from squid233/main
Update documentation stuff
- Loading branch information
Showing
3 changed files
with
74 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Internal Documentation | ||
|
||
## Publishing | ||
|
||
To publish this library, you need a GPG key and the write permission of Maven Central. | ||
|
||
### Packing Natives | ||
|
||
The build script packs the native libraries into jars. | ||
|
||
The tree structure of the native libraries is: | ||
|
||
```text | ||
natives | ||
├─ glfw | ||
│ ├─ linux | ||
│ │ ├─ arm64 | ||
│ │ │ └─ libglfw3.so | ||
│ │ └─ x64 | ||
│ │ └─ libglfw3.so | ||
│ ├─ macos | ||
│ │ ├─ arm64 | ||
│ │ │ └─ libglfw3.dylib | ||
│ │ └─ x64 | ||
│ │ └─ libglfw3.dylib | ||
│ └─ windows | ||
│ └─ x64 | ||
│ └─ glfw3.dll | ||
├─ nfd https://github.com/Over-Run/nfd-ci | ||
│ ├─ linux | ||
│ │ ├─ arm32 | ||
│ │ │ └─ libnfd.so | ||
│ │ ├─ arm64 | ||
│ │ │ └─ libnfd.so | ||
│ │ └─ x64 | ||
│ │ └─ libnfd.so | ||
│ ├─ macos | ||
│ │ ├─ arm64 | ||
│ │ │ └─ libnfd.dylib | ||
│ │ └─ x64 | ||
│ │ └─ libnfd.dylib | ||
│ └─ windows | ||
│ ├─ arm64 | ||
│ │ └─ nfd.dll | ||
│ └─ x64 | ||
│ └─ nfd.dll | ||
└─ stb https://github.com/Over-Run/stb-ci | ||
├─ linux | ||
│ ├─ arm32 | ||
│ │ └─ libstb.so | ||
│ ├─ arm64 | ||
│ │ └─ libstb.so | ||
│ └─ x64 | ||
│ └─ libstb.so | ||
├─ macos | ||
│ ├─ arm64 | ||
│ │ └─ libstb.dylib | ||
│ └─ x64 | ||
│ └─ libstb.dylib | ||
└─ windows | ||
├─ arm64 | ||
│ └─ stb.dll | ||
└─ x64 | ||
└─ stb.dll | ||
``` | ||
|
||
The `natives` directory is in the project directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters