mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-15 21:32:35 +00:00
Fixed some issues related to threading in game clock by using a queue
This commit is contained in:
14
Rakefile
14
Rakefile
@@ -7,13 +7,23 @@ Releasy::Project.new do
|
||||
version TAC::VERSION
|
||||
|
||||
executable "timecrafters_configuration_tool.rb"
|
||||
files ["lib/**/*.*", "media/**/*.*", "data/.gitkeep", "data/configs/.gitkeep"]
|
||||
files [
|
||||
"lib/**/*.*",
|
||||
"data/.gitkeep",
|
||||
"data/configs/.gitkeep",
|
||||
"media/*.*",
|
||||
"media/icons/*.*",
|
||||
"media/fonts/*.*",
|
||||
"media/sounds/.gitkeep",
|
||||
"media/music/.gitkeep",
|
||||
"media/particles/.gitkeep"
|
||||
]
|
||||
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 "media/icon.ico"
|
||||
executable_type :windows # Assuming you don't want it to run with a console window.
|
||||
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