From 9b0ad5d5fd011d994bfd8fb18a79b6a1e085f183 Mon Sep 17 00:00:00 2001 From: NSoiffer Date: Wed, 28 Feb 2024 03:59:40 +0000 Subject: [PATCH] fix path for library --- .github/workflows/automaticRelease.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/automaticRelease.yaml b/.github/workflows/automaticRelease.yaml index 1dd830c..87f2600 100644 --- a/.github/workflows/automaticRelease.yaml +++ b/.github/workflows/automaticRelease.yaml @@ -21,7 +21,7 @@ jobs: run: | cp target/x86_64-pc-windows-msvc/release/libmathcat_c.dll c-example/ cd c-example - gcc test.cpp -o test -L../target/release/ -llibmathcat_c + gcc test.cpp -o test -L..target/x86_64-pc-windows-msvc/release -llibmathcat_c ./test.exe - name: create libmathcat64 uses: thedoctor0/zip-release@0.7.5