Skip to content

Commit

Permalink
Refactoring cmake to be a bit more structured
Browse files Browse the repository at this point in the history
  • Loading branch information
Honeybunch committed Sep 6, 2024
1 parent 808266f commit 75b8b20
Show file tree
Hide file tree
Showing 23 changed files with 582 additions and 686 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4

- name: Configure
run: cmake --preset ${{matrix.toolsets.preset}} -DCOOK_ASSETS=OFF
run: cmake --preset ${{matrix.toolsets.preset}} -DTB_COOK_ASSETS=OFF

- name: Build Debug
run: cmake --build --preset debug-${{matrix.toolsets.preset}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4

- name: Configure
run: cmake --preset ${{matrix.toolsets.preset}} -DCOOK_ASSETS=OFF
run: cmake --preset ${{matrix.toolsets.preset}} -DTB_COOK_ASSETS=OFF

- name: Build Debug
run: cmake --build --preset debug-${{matrix.toolsets.preset}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v4

- name: Configure
run: cmake --preset ${{matrix.toolsets.preset}} -DCOOK_ASSETS=OFF -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
run: cmake --preset ${{matrix.toolsets.preset}} -DTB_COOK_ASSETS=OFF -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++

- name: Build Debug
run: cmake --build --preset debug-${{matrix.toolsets.preset}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v4

- name: Configure
run: cmake --preset ${{matrix.toolsets.preset}} -DCOOK_ASSETS=OFF
run: cmake --preset ${{matrix.toolsets.preset}} -DTB_COOK_ASSETS=OFF

- name: Build Debug
run: cmake --build --preset debug-${{matrix.toolsets.preset}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v4

- name: Configure
run: cmake --preset ${{matrix.toolsets.preset}} -DCOOK_ASSETS=OFF
run: cmake --preset ${{matrix.toolsets.preset}} -DTB_COOK_ASSETS=OFF

- name: Build Debug
run: cmake --build --preset debug-${{matrix.toolsets.preset}}
Expand Down
Loading

0 comments on commit 75b8b20

Please sign in to comment.