Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
chore: move headerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
engsr6982 committed Mar 26, 2024
1 parent bf4829d commit 47dac88
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ jobs:
- name: Create SDK directories
run: |
mkdir SDK
mkdir SDK/Lib
mkdir SDK/lib
- name: Copy include files to SDK
run: |
Copy-Item -Path include/* -Destination SDK/ -Recurse -Force
Copy-Item -Path include/* -Destination SDK/include/ -Recurse -Force
shell: pwsh

- name: Copy .lib files to SDK/Lib
- name: Copy .lib files to SDK/lib
run: |
New-Item -Path SDK/Lib -ItemType Directory -Force
Copy-Item -Path build/windows/x64/release/*.lib -Destination SDK/Lib/ -Force
New-Item -Path SDK/lib -ItemType Directory -Force
Copy-Item -Path build/windows/x64/release/*.lib -Destination SDK/lib/ -Force
shell: pwsh

- uses: actions/upload-artifact@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ jobs:
- name: Create SDK directories
run: |
mkdir SDK
mkdir SDK/Lib
mkdir SDK/lib
- name: Copy include files to SDK
run: |
Copy-Item -Path include/* -Destination SDK/ -Recurse -Force
Copy-Item -Path include/* -Destination SDK/include/ -Recurse -Force
shell: pwsh

- name: Copy .lib files to SDK/Lib
- name: Copy .lib files to SDK/lib
run: |
New-Item -Path SDK/Lib -ItemType Directory -Force
Copy-Item -Path build/windows/x64/release/*.lib -Destination SDK/Lib/ -Force
New-Item -Path SDK/lib -ItemType Directory -Force
Copy-Item -Path build/windows/x64/release/*.lib -Destination SDK/lib/ -Force
shell: pwsh

- uses: actions/upload-artifact@v4
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions include/include_all.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#include "PermissionCore/PermissionCore/PermissionCore.h"
#include "PermissionCore/PermissionCore/PermissionManager.h"
#include "PermissionCore/Registers/Registers.h"
#include "PermissionCore/PermissionCore.h"
#include "PermissionCore/PermissionManager.h"
#include "Registers/Registers.h"
2 changes: 1 addition & 1 deletion src/PermissionCore/PermissionManager.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "PermissionCore/PermissionCore/PermissionManager.h"
#include "PermissionCore/PermissionManager.h"

namespace perm {

Expand Down

0 comments on commit 47dac88

Please sign in to comment.