Skip to content

Commit

Permalink
CFLAGS -> LDFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuAuahDark committed Jul 26, 2024
1 parent 3a34637 commit 86fa245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
path: cs2djit
submodules: true
- name: Configure
run: CFLAGS=-m32 cmake -Bbuild -Scs2djit -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_BUILD_TYPE=Release
run: CFLAGS=-m32 cmake -Bbuild -Scs2djit --install-prefix $PWD/install -DCMAKE_BUILD_TYPE=Release
- name: Install
run: cmake --build build --target install
- name: Artifact
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
path: cs2djit
submodules: true
- name: Configure
run: CLFAGS=-static-libgcc LUAJIT_DIR=$PWD/LuaJIT/src cmake -DCMAKE_TOOLCHAIN_FILE=$PWD/cs2djit/cmake/mingw-w64.cmake -Bbuild -Scs2djit -DCMAKE_INSTALL_PREFIX=$PWD/install -DCMAKE_BUILD_TYPE=Release
run: LDLFAGS=-static-libgcc LUAJIT_DIR=$PWD/LuaJIT/src cmake -DCMAKE_TOOLCHAIN_FILE=$PWD/cs2djit/cmake/mingw-w64.cmake -Bbuild -Scs2djit --install-prefix $PWD/install -DCMAKE_BUILD_TYPE=Release
- name: Install
run: cmake --build build --target install
- name: Copy lua51.dll to Install
Expand Down

0 comments on commit 86fa245

Please sign in to comment.