Fixed compilation of the XS module with SLIC3R_GUI compilation flag

enabled, leading to a linkage of GL and GLU libraries.
https://github.com/prusa3d/Slic3r/issues/8
This commit is contained in:
bubnikv 2016-11-04 01:06:26 +01:00
parent 61d82b02b5
commit 3fc57ba8d8

View File

@ -172,7 +172,7 @@ if ($ENV{SLIC3R_GUI}) {
push @LIBS, qw(-lopengl32);
}
} else {
push @LIBS, qw(-lgl -lglu);
push @LIBS, qw(-lGL -lGLU);
}
}