Skip to content

Commit

Permalink
freezing build
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-rgb committed Apr 25, 2016
1 parent dbe1f0c commit ef9ab52
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions Milton.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
; -- Milton.iss --


[Setup]
AppName=Milton
AppVersion=1.1.0
DefaultDirName={pf}\Milton
DefaultGroupName=Milton
UninstallDisplayIcon={app}\Milton.exe
Compression=lzma2
SolidCompression=yes
OutputBaseFilename=MiltonSetup

[Files]
Source: "Milton.exe"; DestDir: "{app}"
Source: "Carlito.ttf"; DestDir: "{app}"
Source: "Carlito.LICENSE"; DestDir: "{app}"

[Icons]
Name: "{group}\Milton"; Filename: "{app}\Milton.exe"
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
::
:: - 1: Optimized build.
:: - 0: Debug build.
set mlt_opt_level=0
set mlt_opt_level=1

IF NOT EXIST build mkdir build

Expand Down
2 changes: 1 addition & 1 deletion src/milton.c
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ void milton_set_working_layer(MiltonState* milton_state, Layer* layer)
{
milton_state->working_layer = layer;
milton_state->view->working_layer_id = layer->id;
}
}

void milton_delete_working_layer(MiltonState* milton_state)
{
Expand Down
2 changes: 1 addition & 1 deletion src/milton_configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// - Asserts
// - Fixed location arena allocations
// - Runtime renderer implementation switching
#define MILTON_DEBUG 1
#define MILTON_DEBUG 0

#define MILTON_MULTITHREADED 1

Expand Down

0 comments on commit ef9ab52

Please sign in to comment.