File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1+ on :
2+ - push
3+
4+ jobs :
5+ build :
6+ runs-on : windows-latest
7+ steps :
8+ - uses : actions/checkout@v4
9+ # Also enable GKREGEX, because building with Ninja does not count as MSVC hence it doesn't get enabled by default
10+ - run : cmake -Bbuild -GNinja -DCMAKE_C_COMPILER=clang -DGKREGEX=ON
11+ # -DCMAKE_CXX_COMPILER=clang++
12+ - run : cmake --build build
13+
Original file line number Diff line number Diff line change @@ -62,12 +62,11 @@ ifneq ($(cputype), x86_64)
6262endif
6363
6464define run-config
65- mkdir -p $(BUILDDIR )
66- cd $(BUILDDIR ) && cmake $(CURDIR ) $(CONFIG_FLAGS )
65+ cmake $(CURDIR ) -B"$(BUILDDIR ) " $(CONFIG_FLAGS )
6766endef
6867
6968all clean install : $(BUILDDIR )
70- make -C $(BUILDDIR ) $@
69+ make --build $(BUILDDIR ) $@
7170
7271uninstall :
7372 xargs rm < $(BUILDDIR ) /install_manifest.txt
You can’t perform that action at this time.
0 commit comments