mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-09 20:26:09 -04:00
remove cmake specific options
This commit is contained in:
parent
4e0a30ee45
commit
1af45bdd64
10
.github/workflows/meson.yaml
vendored
10
.github/workflows/meson.yaml
vendored
@ -13,16 +13,12 @@ jobs:
|
|||||||
- {
|
- {
|
||||||
name: "Windows Latest MSVC",
|
name: "Windows Latest MSVC",
|
||||||
os: windows-latest,
|
os: windows-latest,
|
||||||
generator: "Visual Studio 17 2022",
|
|
||||||
build_type: "Debug",
|
|
||||||
cc: "cl", cxx: "cl",
|
cc: "cl", cxx: "cl",
|
||||||
extra_path: "",
|
extra_path: "",
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
name: "Windows Latest MinGW",
|
name: "Windows Latest MinGW",
|
||||||
os: windows-latest,
|
os: windows-latest,
|
||||||
generator: "MinGW Makefiles",
|
|
||||||
build_type: "Debug",
|
|
||||||
cc: "gcc", cxx: "g++",
|
cc: "gcc", cxx: "g++",
|
||||||
extra_path: "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin",
|
extra_path: "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin",
|
||||||
}
|
}
|
||||||
@ -35,8 +31,6 @@ jobs:
|
|||||||
- {
|
- {
|
||||||
name: "Ubuntu Latest GCC",
|
name: "Ubuntu Latest GCC",
|
||||||
os: ubuntu-latest,
|
os: ubuntu-latest,
|
||||||
generator: "Unix Makefiles",
|
|
||||||
build_type: "Debug",
|
|
||||||
cc: "gcc", cxx: "g++",
|
cc: "gcc", cxx: "g++",
|
||||||
extra_path: ""
|
extra_path: ""
|
||||||
}
|
}
|
||||||
@ -49,8 +43,6 @@ jobs:
|
|||||||
- {
|
- {
|
||||||
name: "macOS Latest Clang",
|
name: "macOS Latest Clang",
|
||||||
os: macos-latest,
|
os: macos-latest,
|
||||||
generator: "Unix Makefiles",
|
|
||||||
build_type: "Debug",
|
|
||||||
cc: "clang", cxx: "clang++",
|
cc: "clang", cxx: "clang++",
|
||||||
extra_path: ""
|
extra_path: ""
|
||||||
}
|
}
|
||||||
@ -67,6 +59,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
set(ENV{CC} ${{matrix.config.cc}})
|
set(ENV{CC} ${{matrix.config.cc}})
|
||||||
set(ENV{CXX} ${{matrix.config.cxx}})
|
set(ENV{CXX} ${{matrix.config.cxx}})
|
||||||
|
set(ENV{C_LD} ${{matrix.config.c_ld}})
|
||||||
|
set(ENV{CXX_LD} ${{matrix.config.cxx_ld}})
|
||||||
- name: install prerequisites
|
- name: install prerequisites
|
||||||
run: |
|
run: |
|
||||||
# asuming that python and pip are already installed
|
# asuming that python and pip are already installed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user