Skip to content

Commit

Permalink
Fixed compilation of the XS module with SLIC3R_GUI compilation flag
Browse files Browse the repository at this point in the history
enabled, leading to a linkage of GL and GLU libraries.
#8
  • Loading branch information
bubnikv committed Nov 4, 2016
1 parent 61d82b0 commit 3fc57ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xs/Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ if ($ENV{SLIC3R_GUI}) {
push @LIBS, qw(-lopengl32);
}
} else {
push @LIBS, qw(-lgl -lglu);
push @LIBS, qw(-lGL -lGLU);
}
}

Expand Down

0 comments on commit 3fc57ba

Please sign in to comment.