Skip to content

Commit 1462f57

Browse files
authored
Removed mention of myself due to build failiure on github pages (#209)
* Local package step by step tutorial * seperate folder structure merged * old page link removed * Heading 2 -> 4 * removed mention due to github pages failiure * reordered repo creations commands
1 parent fe7094b commit 1462f57

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

package/local_package.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,6 @@ find_package(ABC CONFIG REQUIRED)
249249

250250
#### Step by Step Local Packaging Tutorial
251251

252-
Written by [@mccakit](https://github.com/mccakit)
253-
254252
---
255253

256254
In this tutorial we will package a static library called foo, upload it to a GitHub repository and consume it similar to a manner of CMake FetchContent
@@ -334,23 +332,19 @@ In this tutorial we will package a static library called foo, upload it to a Git
334332
```
335333

336334
```powershell
337-
gh auth login
338-
```
339-
340-
```powershell
341-
gh repo create xmake_local_package_tutorial --public --source=. --remote=origin --push
335+
git add .\packages\
342336
```
343337

344338
```powershell
345-
git add .\packages\
339+
git commit -m "init"
346340
```
347341

348342
```powershell
349-
git commit -m "init"
343+
gh auth login
350344
```
351345

352346
```powershell
353-
git push
347+
gh repo create xmake_local_package_tutorial --public --source=. --remote=origin --push
354348
```
355349

356350
- Create a project where you intend on consuming the package

0 commit comments

Comments
 (0)