├── .gitignore ├── CMakeLists.txt ├── README.md ├── aarch64-linux-gnu.cmake ├── aarch64-macos-none.cmake ├── aarch64-windows-gnu.cmake ├── cmake ├── Platform │ ├── UEFI.cmake │ └── WASI.cmake ├── zig-ar ├── zig-ar.cmd ├── zig-c++ ├── zig-c++.cmd ├── zig-cc ├── zig-cc.cmd ├── zig-ranlib ├── zig-ranlib.cmd ├── zig-rc ├── zig-rc.cmd └── zig-toolchain.cmake ├── riscv64-freestanding-none.cmake ├── src ├── myexe.cpp ├── mylib.cpp └── mylib.h ├── wasm32-emscripten-musl.cmake ├── wasm32-wasi-musl.cmake ├── x86-windows-gnu.cmake ├── x86_64-linux-gnu.cmake ├── x86_64-linux-musl.cmake ├── x86_64-macos-none.cmake ├── x86_64-uefi-gnu.cmake ├── x86_64-windows-gnu.cmake ├── x86_64-windows-msvc.cmake └── zig-targets.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/README.md -------------------------------------------------------------------------------- /aarch64-linux-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/aarch64-linux-gnu.cmake -------------------------------------------------------------------------------- /aarch64-macos-none.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/aarch64-macos-none.cmake -------------------------------------------------------------------------------- /aarch64-windows-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/aarch64-windows-gnu.cmake -------------------------------------------------------------------------------- /cmake/Platform/UEFI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/cmake/Platform/UEFI.cmake -------------------------------------------------------------------------------- /cmake/Platform/WASI.cmake: -------------------------------------------------------------------------------- 1 | set(WASI 1) -------------------------------------------------------------------------------- /cmake/zig-ar: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zig ar "$@" 3 | -------------------------------------------------------------------------------- /cmake/zig-ar.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | zig ar %* -------------------------------------------------------------------------------- /cmake/zig-c++: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zig c++ "$@" 3 | -------------------------------------------------------------------------------- /cmake/zig-c++.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | zig c++ %* -------------------------------------------------------------------------------- /cmake/zig-cc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zig cc "$@" 3 | -------------------------------------------------------------------------------- /cmake/zig-cc.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | zig cc %* -------------------------------------------------------------------------------- /cmake/zig-ranlib: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zig ranlib "$@" 3 | -------------------------------------------------------------------------------- /cmake/zig-ranlib.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | zig ranlib %* -------------------------------------------------------------------------------- /cmake/zig-rc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zig rc "$@" 3 | -------------------------------------------------------------------------------- /cmake/zig-rc.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | zig rc %* -------------------------------------------------------------------------------- /cmake/zig-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/cmake/zig-toolchain.cmake -------------------------------------------------------------------------------- /riscv64-freestanding-none.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/riscv64-freestanding-none.cmake -------------------------------------------------------------------------------- /src/myexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/src/myexe.cpp -------------------------------------------------------------------------------- /src/mylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/src/mylib.cpp -------------------------------------------------------------------------------- /src/mylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/src/mylib.h -------------------------------------------------------------------------------- /wasm32-emscripten-musl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/wasm32-emscripten-musl.cmake -------------------------------------------------------------------------------- /wasm32-wasi-musl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/wasm32-wasi-musl.cmake -------------------------------------------------------------------------------- /x86-windows-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/x86-windows-gnu.cmake -------------------------------------------------------------------------------- /x86_64-linux-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/x86_64-linux-gnu.cmake -------------------------------------------------------------------------------- /x86_64-linux-musl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/x86_64-linux-musl.cmake -------------------------------------------------------------------------------- /x86_64-macos-none.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/x86_64-macos-none.cmake -------------------------------------------------------------------------------- /x86_64-uefi-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/x86_64-uefi-gnu.cmake -------------------------------------------------------------------------------- /x86_64-windows-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/x86_64-windows-gnu.cmake -------------------------------------------------------------------------------- /x86_64-windows-msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/x86_64-windows-msvc.cmake -------------------------------------------------------------------------------- /zig-targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/zig-cross/HEAD/zig-targets.json --------------------------------------------------------------------------------