소스 검색

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
mccakit 8 달 전
부모
커밋
1462f57d63
1개의 변경된 파일4개의 추가작업 그리고 10개의 파일을 삭제
  1. 4 10
      package/local_package.md

+ 4 - 10
package/local_package.md

@@ -249,8 +249,6 @@ find_package(ABC CONFIG REQUIRED)
 
 #### Step by Step Local Packaging Tutorial
 
-Written by [@mccakit](https://github.com/mccakit)
-
 ---
 
 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
   ```
   
   ```powershell
-  gh auth login
-  ```
-  
-  ```powershell
-  gh repo create xmake_local_package_tutorial --public --source=. --remote=origin --push
+  git add .\packages\
   ```
   
   ```powershell
-  git add .\packages\
+  git commit -m "init"
   ```
   
   ```powershell
-  git commit -m "init"
+  gh auth login
   ```
   
   ```powershell
-  git push
+  gh repo create xmake_local_package_tutorial --public --source=. --remote=origin --push
   ```
 
 - Create a project where you intend on consuming the package