Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-04-11 18:05:58 +0300
committerbubnikv <bubnikv@gmail.com>2016-04-11 18:05:58 +0300
commit7da68c91a5c5544a3cb20a4d00b7a370c2af32fe (patch)
tree66c33cdbcbd464087d7d3201f93fa7bec7cbbf11 /xs/Build.PL
parentd392858ee35ef993180c7c23dac610e691baf8b4 (diff)
Vojtech likes to use Sublime on Windows to get the wheels rolling.
Diffstat (limited to 'xs/Build.PL')
-rw-r--r--xs/Build.PL5
1 files changed, 4 insertions, 1 deletions
diff --git a/xs/Build.PL b/xs/Build.PL
index 3254dbeae..c8577c382 100644
--- a/xs/Build.PL
+++ b/xs/Build.PL
@@ -38,7 +38,7 @@ if (defined $ENV{BOOST_DIR}) {
qw(C:\Boost\lib /lib);
if ($^O eq 'MSWin32') {
- for my $path (glob('C:\dev\boost*'), glob ('C:\boost*')) {
+ for my $path (glob('C:\dev\boost*'), glob ('C:\boost*'), glob ('d:\src\boost*')) {
push @boost_include, $path;
push @boost_libs, $path . "/stage/lib";
}
@@ -89,6 +89,9 @@ path through the BOOST_DIR environment variable:
EOF
+# Enable C++ 0x features of the language.
+#push @cflags, qw(-std=c++0x);
+
if ($ENV{SLIC3R_DEBUG}) {
# only on newer GCCs: -ftemplate-backtrace-limit=0
push @cflags, qw(-DSLIC3R_DEBUG -g);