Build: Plumb perl include path
Thanks to @kortschak for contributing to this fix Co-authored-by: Dan Kortschak <dan@kortschak.io>
This commit is contained in:
parent
93b8f3147c
commit
267712eb32
1
Build.PL
1
Build.PL
@ -38,7 +38,6 @@ if ($gui) {
|
|||||||
%prereqs = qw(
|
%prereqs = qw(
|
||||||
Class::Accessor 0
|
Class::Accessor 0
|
||||||
Wx 0.9918
|
Wx 0.9918
|
||||||
Socket 2.016
|
|
||||||
);
|
);
|
||||||
%recommends = qw(
|
%recommends = qw(
|
||||||
Wx::GLCanvas 0
|
Wx::GLCanvas 0
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# Boost 1.63 requires CMake 3.7 or newer
|
cmake_minimum_required(VERSION 3.2)
|
||||||
cmake_minimum_required(VERSION 2.8)
|
|
||||||
|
|
||||||
project(Slic3r)
|
project(Slic3r)
|
||||||
|
|
||||||
@ -36,10 +35,18 @@ else()
|
|||||||
set(ENV_PATH_SEPARATOR ":")
|
set(ENV_PATH_SEPARATOR ":")
|
||||||
endif()
|
endif()
|
||||||
set(ENV{PATH} "${PROJECT_SOURCE_DIR}/local-lib/bin${ENV_PATH_SEPARATOR}$ENV{PATH}")
|
set(ENV{PATH} "${PROJECT_SOURCE_DIR}/local-lib/bin${ENV_PATH_SEPARATOR}$ENV{PATH}")
|
||||||
set(ENV{PERL5LIB} "${PROJECT_SOURCE_DIR}/local-lib/lib/perl${ENV_PATH_SEPARATOR}$ENV{PERL5LIB}")
|
set(PERL_INCLUDE "${PROJECT_SOURCE_DIR}/local-lib/lib/perl5${ENV_PATH_SEPARATOR}$ENV{PERL5LIB}")
|
||||||
message("PATH: $ENV{PATH}")
|
message("PATH: $ENV{PATH}")
|
||||||
message("PERL5LIB: $ENV{PERL5LIB}")
|
message("PERL_INCLUDE: ${PERL_INCLUDE}")
|
||||||
find_package(Perl REQUIRED)
|
find_package(Perl REQUIRED)
|
||||||
|
if (WIN32)
|
||||||
|
# On Windows passing the PERL5LIB variable causes various problems (such as with MAX_PATH and others),
|
||||||
|
# basically I've found no good way to do it on Windows.
|
||||||
|
set(PERL5LIB_ENV_CMD "")
|
||||||
|
else()
|
||||||
|
set(PERL5LIB_ENV_CMD ${CMAKE_COMMAND} -E env PERL5LIB=${PERL_INCLUDE})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
# CMAKE_PREFIX_PATH is used to point CMake to the remaining dependencies (Boost, TBB, ...)
|
# CMAKE_PREFIX_PATH is used to point CMake to the remaining dependencies (Boost, TBB, ...)
|
||||||
# We pick it from environment if it is not defined in another way
|
# We pick it from environment if it is not defined in another way
|
||||||
|
@ -367,7 +367,7 @@ set(MyTypemap ${CMAKE_CURRENT_BINARY_DIR}/typemap)
|
|||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT ${MyTypemap}
|
OUTPUT ${MyTypemap}
|
||||||
DEPENDS ${CMAKE_CURRENT_LIST_DIR}/xsp/my.map
|
DEPENDS ${CMAKE_CURRENT_LIST_DIR}/xsp/my.map
|
||||||
COMMAND ${PERL_EXECUTABLE} -MExtUtils::Typemaps -MExtUtils::Typemaps::Basic -e "$typemap = ExtUtils::Typemaps->new(file => \"${CMAKE_CURRENT_LIST_DIR}/xsp/my.map\"); $typemap->merge(typemap => ExtUtils::Typemaps::Basic->new); $typemap->write(file => \"${MyTypemap}\")"
|
COMMAND ${PERL5LIB_ENV_CMD} ${PERL_EXECUTABLE} -MExtUtils::Typemaps -MExtUtils::Typemaps::Basic -e "$typemap = ExtUtils::Typemaps->new(file => \"${CMAKE_CURRENT_LIST_DIR}/xsp/my.map\"); $typemap->merge(typemap => ExtUtils::Typemaps::Basic->new); $typemap->write(file => \"${MyTypemap}\")"
|
||||||
VERBATIM
|
VERBATIM
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -432,7 +432,8 @@ set(XS_MAIN_CPP ${CMAKE_CURRENT_BINARY_DIR}/XS.cpp)
|
|||||||
add_custom_command(
|
add_custom_command(
|
||||||
OUTPUT ${XS_MAIN_CPP}
|
OUTPUT ${XS_MAIN_CPP}
|
||||||
DEPENDS ${MyTypemap} ${XS_XSP_FILES} ${CMAKE_CURRENT_LIST_DIR}/xsp/typemap.xspt
|
DEPENDS ${MyTypemap} ${XS_XSP_FILES} ${CMAKE_CURRENT_LIST_DIR}/xsp/typemap.xspt
|
||||||
COMMAND COMMAND xsubpp -typemap typemap -output ${XS_MAIN_CPP} -hiertype ${XS_MAIN_XS}
|
COMMAND ${PERL5LIB_ENV_CMD} xsubpp -typemap typemap -output ${XS_MAIN_CPP} -hiertype ${XS_MAIN_XS}
|
||||||
|
VERBATIM
|
||||||
)
|
)
|
||||||
|
|
||||||
# Define the Perl XS shared library.
|
# Define the Perl XS shared library.
|
||||||
|
Loading…
Reference in New Issue
Block a user