58
58
run : |
59
59
$env:MSYSTEM = "MINGW64"
60
60
61
- C:\msys64\usr\bin\bash -lc 'pacman --needed --noconfirm -S mingw-w64-x86_64-glew mingw-w64-x86_64-glfw mingw-w64-x86_64-SDL2 mingw-w64-x86_64-openal mingw-w64-x86_64-libvorbis mingw-w64-x86_64-libwebp mingw-w64-x86_64-lua cmake'
61
+ C:\msys64\usr\bin\bash -lc 'pacman --needed --noconfirm -S mingw-w64-x86_64-glew mingw-w64-x86_64-glfw mingw-w64-x86_64-SDL2 mingw-w64-x86_64-openal mingw-w64-x86_64-libvorbis mingw-w64-x86_64-libwebp mingw-w64-x86_64-lua mingw-w64-x86_64- cmake'
62
62
63
63
if ("${{ matrix.CC }}" -eq "gcc") { C:\msys64\usr\bin\bash -lc 'pacman --needed --noconfirm -S mingw-w64-x86_64-gcc' }
64
64
else { C:\msys64\usr\bin\bash -lc 'pacman --needed --noconfirm -S mingw-w64-x86_64-clang' }
@@ -106,12 +106,12 @@ jobs:
106
106
cd ../nCine
107
107
if ("${{ matrix.BuildType }}" -eq "BinDist")
108
108
{
109
- C:\msys64\usr\bin\bash.exe -lc ' cmake -G \" MSYS Makefiles\" -B ../nCine-build-Release -D CMAKE_BUILD_TYPE=Release -D NCINE_DYNAMIC_LIBRARY=OFF -D IMGUI_VERSION_TAG=docking -D NCINE_PREFERRED_BACKEND=SDL2 -D NCINE_WITH_THREADS=OFF -D NCINE_WITH_WEBP=OFF -D NCINE_WITH_AUDIO=OFF -D NCINE_WITH_SCRIPTING_API=OFF -D NCINE_BUILD_TESTS=OFF'
109
+ C:\msys64\usr\bin\bash.exe -lc " cmake -G ' MSYS Makefiles' -B ../nCine-build-Release -D CMAKE_BUILD_TYPE=Release -D NCINE_DYNAMIC_LIBRARY=OFF -D IMGUI_VERSION_TAG=docking -D NCINE_PREFERRED_BACKEND=SDL2 -D NCINE_WITH_THREADS=OFF -D NCINE_WITH_WEBP=OFF -D NCINE_WITH_AUDIO=OFF -D NCINE_WITH_SCRIPTING_API=OFF -D NCINE_BUILD_TESTS=OFF"
110
110
C:\msys64\usr\bin\bash.exe -lc 'make -j2 -C ../nCine-build-Release'
111
111
}
112
112
else
113
113
{
114
- C:\msys64\usr\bin\bash.exe -lc ' cmake -G \" MSYS Makefiles\" -B ../nCine-build-${{ matrix.BuildType }} -D CMAKE_BUILD_TYPE=${{ matrix.BuildType }} -D NCINE_DYNAMIC_LIBRARY=OFF -D IMGUI_VERSION_TAG=docking -D NCINE_PREFERRED_BACKEND=SDL2 -D NCINE_WITH_THREADS=OFF -D NCINE_WITH_WEBP=OFF -D NCINE_WITH_AUDIO=OFF -D NCINE_WITH_SCRIPTING_API=OFF -D NCINE_BUILD_TESTS=OFF'
114
+ C:\msys64\usr\bin\bash.exe -lc " cmake -G ' MSYS Makefiles' -B ../nCine-build-${{ matrix.BuildType }} -D CMAKE_BUILD_TYPE=${{ matrix.BuildType }} -D NCINE_DYNAMIC_LIBRARY=OFF -D IMGUI_VERSION_TAG=docking -D NCINE_PREFERRED_BACKEND=SDL2 -D NCINE_WITH_THREADS=OFF -D NCINE_WITH_WEBP=OFF -D NCINE_WITH_AUDIO=OFF -D NCINE_WITH_SCRIPTING_API=OFF -D NCINE_BUILD_TESTS=OFF"
115
115
C:\msys64\usr\bin\bash.exe -lc 'make -j2 -C ../nCine-build-${{ matrix.BuildType }}'
116
116
}
117
117
@@ -126,9 +126,9 @@ jobs:
126
126
$env:MSYSTEM = "MINGW64"
127
127
128
128
if ("${{ matrix.BuildType }}" -eq "BinDist")
129
- { C:\msys64\usr\bin\bash.exe -lc ' cmake -G \" MSYS Makefiles\" -B ../$PROJECT_NAME-build-${{ matrix.BuildType }} -D NCPROJECT_OPTIONS_PRESETS=${{ matrix.BuildType }} -D nCine_DIR=$(pwd) /../nCine-build-Release' }
129
+ { C:\msys64\usr\bin\bash.exe -lc " cmake -G ' MSYS Makefiles' -B ../$env: PROJECT_NAME-build-${{ matrix.BuildType }} -D NCPROJECT_OPTIONS_PRESETS=${{ matrix.BuildType }} -D nCine_DIR=$(cygpath -m $PWD /../nCine-build-Release)" }
130
130
else
131
- { C:\msys64\usr\bin\bash.exe -lc ' cmake -G \" MSYS Makefiles\" -B ../$PROJECT_NAME-build-${{ matrix.BuildType }} -D nCine_DIR=$(pwd) /../nCine-build-${{ matrix.BuildType }}' }
131
+ { C:\msys64\usr\bin\bash.exe -lc " cmake -G ' MSYS Makefiles' -B ../$env: PROJECT_NAME-build-${{ matrix.BuildType }} -D CMAKE_BUILD_TYPE=${{ matrix.BuildType }} -D nCine_DIR=$(cygpath -m $PWD /../nCine-build-${{ matrix.BuildType }})" }
132
132
133
133
- name : ' Make'
134
134
env :
0 commit comments