mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 15:42:35 +00:00
Added Rakefile for windows build
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
*.dat
|
*.dat
|
||||||
profile.*
|
profile.*
|
||||||
|
pkg/*
|
||||||
19
Rakefile
Normal file
19
Rakefile
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
require "releasy"
|
||||||
|
require 'bundler/setup' # Releasy requires that your application uses bundler.
|
||||||
|
require_relative "lib/version"
|
||||||
|
|
||||||
|
Releasy::Project.new do
|
||||||
|
name "I-MIC FPS"
|
||||||
|
version "#{IMICFPS::VERSION}"
|
||||||
|
|
||||||
|
executable "i-mic-fps.rb"
|
||||||
|
files ["lib/**/*.*", "assets/**/*.*", "blends/**/*.*", "shaders/**/*.*"]
|
||||||
|
exclude_encoding # Applications that don't use advanced encoding (e.g. Japanese characters) can save build size with this.
|
||||||
|
verbose
|
||||||
|
|
||||||
|
add_build :windows_folder do
|
||||||
|
# icon "assets/icon.ico"
|
||||||
|
executable_type :console # Assuming you don't want it to run with a console window.
|
||||||
|
add_package :exe # Windows self-extracting archive.
|
||||||
|
end
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user