Skip to content

Commit

Permalink
fix: Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
vansangpfiev committed Aug 26, 2024
1 parent 35e45f2 commit b207d23
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cortex-cpp-quality-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:

- name: Configure vcpkg
run: |
cd engine
make configure-vcpkg
- name: Build
Expand Down
12 changes: 6 additions & 6 deletions engine/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ all:

configure-vcpkg:
ifeq ($(OS),Windows_NT)
@cd engine/vcpkg && bootstrap-vcpkg.bat;
@cd engine/vcpkg && vcpkg install
@cd vcpkg && bootstrap-vcpkg.bat;
@cd vcpkg && vcpkg install
else ifeq ($(shell uname -s),Linux)
@cd engine/vcpkg && ./bootstrap-vcpkg.sh;
@cd engine/vcpkg && ./vcpkg install;
@cd vcpkg && ./bootstrap-vcpkg.sh;
@cd vcpkg && ./vcpkg install;
else
@cd engine/vcpkg && ./bootstrap-vcpkg.sh;
@cd engine/vcpkg && ./vcpkg install;
@cd vcpkg && ./bootstrap-vcpkg.sh;
@cd vcpkg && ./vcpkg install;
endif

# Build the Cortex engine
Expand Down

0 comments on commit b207d23

Please sign in to comment.