Skip to content

Commit

Permalink
First stab at buildflags for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tkittel committed Nov 24, 2024
1 parent 2c339fe commit 7c7376f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/basictest_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,15 @@ jobs:
cl /help
if %errorlevel% neq 0 exit /b %errorlevel%
echo "Set BUILDFLAGS variable"
ncrystal-config --show buildflags > buildflags.txt
set /p BUILDFLAGS=<buildflags.txt
echo "Got:" %BUILDFLAGS%
@REM Examples from README:
copy .\src\examples\ncrystal_example_cpp.cc my_cpp_code.cpp
if %errorlevel% neq 0 exit /b %errorlevel%
copy .\src\examples\ncrystal_example_c.cc my_c_code.c
copy .\src\examples\ncrystal_example_c.c my_c_code.c
if %errorlevel% neq 0 exit /b %errorlevel%
dir
Expand Down

0 comments on commit 7c7376f

Please sign in to comment.