mirror of
https://github.com/raylib-zig/raylib-zig.git
synced 2025-12-05 22:03:07 +00:00
92 lines
2.7 KiB
Bash
Executable File
92 lines
2.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
PROJECT_NAME='Project'
|
|
else
|
|
PROJECT_NAME=$1
|
|
fi
|
|
|
|
mkdir "$PROJECT_NAME" && cd "$PROJECT_NAME" || exit
|
|
touch build.zig
|
|
echo "Generating project files..."
|
|
|
|
zig init
|
|
rm build.zig
|
|
rm src/root.zig
|
|
|
|
echo 'const std = @import("std");
|
|
const rlz = @import("raylib_zig");
|
|
|
|
pub fn build(b: *std.Build) !void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
|
|
const raylib_dep = b.dependency("raylib_zig", .{
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
const raylib = raylib_dep.module("raylib");
|
|
const raylib_artifact = raylib_dep.artifact("raylib");
|
|
|
|
const exe_mod = b.createModule(.{
|
|
.root_source_file = b.path("src/main.zig"),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
exe_mod.addImport("raylib", raylib);
|
|
|
|
const run_step = b.step("run", "Run the app");
|
|
|
|
//web exports are completely separate
|
|
if (target.query.os_tag == .emscripten) {
|
|
const emsdk = rlz.emsdk;
|
|
const wasm = b.addLibrary(.{
|
|
.name = "'$PROJECT_NAME'",
|
|
.root_module = exe_mod,
|
|
});
|
|
|
|
const install_dir: std.Build.InstallDir = .{ .custom = "web" };
|
|
const emcc_flags = emsdk.emccDefaultFlags(b.allocator, .{ .optimize = optimize });
|
|
const emcc_settings = emsdk.emccDefaultSettings(b.allocator, .{ .optimize = optimize });
|
|
|
|
const emcc_step = emsdk.emccStep(b, raylib_artifact, wasm, .{
|
|
.optimize = optimize,
|
|
.flags = emcc_flags,
|
|
.settings = emcc_settings,
|
|
.shell_file_path = emsdk.shell(raylib_dep.builder),
|
|
.install_dir = install_dir,
|
|
.embed_paths = &.{.{ .src_path = "resources/" }},
|
|
});
|
|
b.getInstallStep().dependOn(emcc_step);
|
|
|
|
const html_filename = try std.fmt.allocPrint(b.allocator, "{s}.html", .{wasm.name});
|
|
const emrun_step = emsdk.emrunStep(
|
|
b,
|
|
b.getInstallPath(install_dir, html_filename),
|
|
&.{},
|
|
);
|
|
|
|
emrun_step.dependOn(emcc_step);
|
|
run_step.dependOn(emrun_step);
|
|
} else {
|
|
const exe = b.addExecutable(.{
|
|
.name = "'$PROJECT_NAME'",
|
|
.root_module = exe_mod,
|
|
});
|
|
b.installArtifact(exe);
|
|
|
|
const run_cmd = b.addRunArtifact(exe);
|
|
run_cmd.step.dependOn(b.getInstallStep());
|
|
|
|
run_step.dependOn(&run_cmd.step);
|
|
}
|
|
}' >> build.zig
|
|
|
|
zig fetch --save git+https://github.com/raylib-zig/raylib-zig#devel
|
|
zig fetch --save=emsdk git+https://github.com/emscripten-core/emsdk#4.0.9
|
|
|
|
mkdir resources
|
|
touch resources/placeholder.txt
|
|
|
|
cp ../examples/core/basic_window.zig src/main.zig
|