2019-12-11 11:24:21 +00:00
|
|
|
cmake_minimum_required(VERSION 3.8)
|
2019-05-13 13:14:33 +00:00
|
|
|
project(PrusaSlicer)
|
2017-08-16 17:05:08 +00:00
|
|
|
|
2018-09-24 09:53:05 +00:00
|
|
|
include("version.inc")
|
2019-01-04 11:06:25 +00:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
2018-09-24 09:53:05 +00:00
|
|
|
set(SLIC3R_RESOURCES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/resources")
|
2018-10-11 13:19:53 +00:00
|
|
|
file(TO_NATIVE_PATH "${SLIC3R_RESOURCES_DIR}" SLIC3R_RESOURCES_DIR_WIN)
|
2018-09-24 09:53:05 +00:00
|
|
|
|
2017-08-18 21:18:27 +00:00
|
|
|
if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|
|
|
message(STATUS "No build type selected, default to Release")
|
|
|
|
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build type (default Release)" FORCE)
|
|
|
|
endif()
|
|
|
|
|
2017-08-28 21:11:43 +00:00
|
|
|
if(DEFINED ENV{SLIC3R_STATIC})
|
2019-08-16 14:17:37 +00:00
|
|
|
set(SLIC3R_STATIC_INITIAL $ENV{SLIC3R_STATIC})
|
2017-08-28 21:11:43 +00:00
|
|
|
else()
|
2019-08-16 14:17:37 +00:00
|
|
|
if (MSVC OR MINGW OR APPLE)
|
|
|
|
set(SLIC3R_STATIC_INITIAL 1)
|
|
|
|
else()
|
|
|
|
set(SLIC3R_STATIC_INITIAL 0)
|
|
|
|
endif()
|
2017-08-28 21:11:43 +00:00
|
|
|
endif()
|
2017-08-16 17:05:08 +00:00
|
|
|
|
2019-05-13 13:14:33 +00:00
|
|
|
option(SLIC3R_STATIC "Compile PrusaSlicer with static libraries (Boost, TBB, glew)" ${SLIC3R_STATIC_INITIAL})
|
|
|
|
option(SLIC3R_GUI "Compile PrusaSlicer with GUI components (OpenGL, wxWidgets)" 1)
|
|
|
|
option(SLIC3R_FHS "Assume PrusaSlicer is to be installed in a FHS directory structure" 0)
|
2019-01-07 18:17:10 +00:00
|
|
|
option(SLIC3R_WX_STABLE "Build against wxWidgets stable (3.0) as oppsed to dev (3.1) on Linux" 0)
|
2019-05-13 13:14:33 +00:00
|
|
|
option(SLIC3R_PROFILE "Compile PrusaSlicer with an invasive Shiny profiler" 0)
|
2019-01-11 11:24:25 +00:00
|
|
|
option(SLIC3R_PCH "Use precompiled headers" 1)
|
2017-08-16 17:05:08 +00:00
|
|
|
option(SLIC3R_MSVC_COMPILE_PARALLEL "Compile on Visual Studio in parallel" 1)
|
2018-08-17 10:38:33 +00:00
|
|
|
option(SLIC3R_MSVC_PDB "Generate PDB files on MSVC in Release mode" 1)
|
2018-10-22 12:53:48 +00:00
|
|
|
option(SLIC3R_PERL_XS "Compile XS Perl module and enable Perl unit and integration tests" 0)
|
2018-11-07 14:23:00 +00:00
|
|
|
option(SLIC3R_ASAN "Enable ASan on Clang and GCC" 0)
|
2017-08-16 17:05:08 +00:00
|
|
|
|
2019-03-25 14:50:07 +00:00
|
|
|
set(SLIC3R_GTK "2" CACHE STRING "GTK version to use with wxWidgets on Linux")
|
|
|
|
|
2018-11-02 10:57:57 +00:00
|
|
|
# Proposal for C++ unit tests and sandboxes
|
|
|
|
option(SLIC3R_BUILD_SANDBOXES "Build development sandboxes" OFF)
|
2019-09-24 08:48:24 +00:00
|
|
|
option(SLIC3R_BUILD_TESTS "Build unit tests" ON)
|
2018-11-02 10:57:57 +00:00
|
|
|
|
2019-01-11 11:24:25 +00:00
|
|
|
# Print out the SLIC3R_* cache options
|
|
|
|
get_cmake_property(_cache_vars CACHE_VARIABLES)
|
|
|
|
list (SORT _cache_vars)
|
|
|
|
foreach (_cache_var ${_cache_vars})
|
|
|
|
if("${_cache_var}" MATCHES "^SLIC3R_")
|
|
|
|
message(STATUS "${_cache_var}: ${${_cache_var}}")
|
|
|
|
endif ()
|
|
|
|
endforeach()
|
|
|
|
|
2019-04-12 10:16:44 +00:00
|
|
|
if (SLIC3R_GUI)
|
|
|
|
add_definitions(-DSLIC3R_GUI)
|
|
|
|
endif ()
|
|
|
|
|
2019-08-01 14:03:52 +00:00
|
|
|
if (MSVC AND CMAKE_CXX_COMPILER_ID STREQUAL Clang)
|
|
|
|
set(IS_CLANG_CL TRUE)
|
2019-08-16 14:17:37 +00:00
|
|
|
|
|
|
|
# clang-cl can interpret SYSTEM header paths if -imsvc is used
|
|
|
|
set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX "-imsvc")
|
|
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall \
|
|
|
|
-Wno-old-style-cast -Wno-reserved-id-macro -Wno-c++98-compat-pedantic")
|
2019-08-01 14:03:52 +00:00
|
|
|
else ()
|
|
|
|
set(IS_CLANG_CL FALSE)
|
|
|
|
endif ()
|
|
|
|
|
2018-10-26 16:08:43 +00:00
|
|
|
if (MSVC)
|
2019-08-01 14:03:52 +00:00
|
|
|
if (SLIC3R_MSVC_COMPILE_PARALLEL AND NOT IS_CLANG_CL)
|
2019-08-16 14:17:37 +00:00
|
|
|
add_compile_options(/MP)
|
2018-10-26 16:08:43 +00:00
|
|
|
endif ()
|
|
|
|
# /bigobj (Increase Number of Sections in .Obj file)
|
2018-10-29 15:01:26 +00:00
|
|
|
# error C3859: virtual memory range for PCH exceeded; please recompile with a command line option of '-Zm90' or greater
|
2019-05-13 17:31:20 +00:00
|
|
|
# Generate symbols at every build target, even for the release.
|
2019-06-04 20:06:42 +00:00
|
|
|
add_compile_options(-bigobj -Zm520 /Zi)
|
2020-01-13 14:57:31 +00:00
|
|
|
# Disable STL4007: Many result_type typedefs and all argument_type, first_argument_type, and second_argument_type typedefs are deprecated in C++17.
|
|
|
|
#FIXME Remove this line after eigen library adapts to the new C++17 adaptor rules.
|
|
|
|
add_compile_options(-D_SILENCE_CXX17_ADAPTOR_TYPEDEFS_DEPRECATION_WARNING)
|
2017-08-16 17:05:08 +00:00
|
|
|
endif ()
|
|
|
|
|
2019-08-16 14:17:37 +00:00
|
|
|
if (MINGW)
|
|
|
|
add_compile_options(-Wa,-mbig-obj)
|
|
|
|
endif ()
|
|
|
|
|
2019-01-02 12:38:02 +00:00
|
|
|
# Display and check CMAKE_PREFIX_PATH
|
|
|
|
message(STATUS "SLIC3R_STATIC: ${SLIC3R_STATIC}")
|
|
|
|
if (NOT "${CMAKE_PREFIX_PATH}" STREQUAL "")
|
|
|
|
message(STATUS "CMAKE_PREFIX_PATH: ${CMAKE_PREFIX_PATH} (from cache or command line)")
|
|
|
|
set(PREFIX_PATH_CHECK ${CMAKE_PREFIX_PATH})
|
|
|
|
elseif (NOT "$ENV{CMAKE_PREFIX_PATH}" STREQUAL "")
|
|
|
|
message(STATUS "CMAKE_PREFIX_PATH: $ENV{CMAKE_PREFIX_PATH} (from environment)")
|
|
|
|
set(PREFIX_PATH_CHECK $ENV{CMAKE_PREFIX_PATH})
|
|
|
|
else ()
|
|
|
|
message(STATUS "CMAKE_PREFIX_PATH: (default)")
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
foreach (DIR ${PREFIX_PATH_CHECK})
|
|
|
|
if (NOT EXISTS "${DIR}")
|
|
|
|
message(WARNING "CMAKE_PREFIX_PATH element doesn't exist: ${DIR}")
|
|
|
|
endif ()
|
|
|
|
endforeach ()
|
2018-02-23 15:48:11 +00:00
|
|
|
|
2018-09-19 09:02:24 +00:00
|
|
|
# Add our own cmake module path.
|
|
|
|
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/modules/)
|
|
|
|
|
2018-05-17 08:37:26 +00:00
|
|
|
enable_testing ()
|
|
|
|
|
2019-12-20 09:33:53 +00:00
|
|
|
# Enable C++17 language standard.
|
2019-12-18 10:53:28 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2018-09-19 09:02:24 +00:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
|
2019-01-29 08:57:17 +00:00
|
|
|
if(NOT WIN32)
|
2019-01-30 14:27:11 +00:00
|
|
|
# Add DEBUG flags to debug builds.
|
2019-01-29 08:57:17 +00:00
|
|
|
add_compile_options("$<$<CONFIG:DEBUG>:-DDEBUG>")
|
|
|
|
endif()
|
|
|
|
|
2018-09-21 18:11:33 +00:00
|
|
|
# To be able to link libslic3r with the Perl XS module.
|
|
|
|
# Once we get rid of Perl and libslic3r is linked statically, we can get rid of -fPIC
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
|
2018-06-04 19:22:42 +00:00
|
|
|
# WIN10SDK_PATH is used to point CMake to the WIN10 SDK installation directory.
|
|
|
|
# We pick it from environment if it is not defined in another way
|
|
|
|
if(WIN32)
|
2019-08-16 14:17:37 +00:00
|
|
|
if(NOT DEFINED WIN10SDK_PATH)
|
|
|
|
if(DEFINED ENV{WIN10SDK_PATH})
|
|
|
|
set(WIN10SDK_PATH "$ENV{WIN10SDK_PATH}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(DEFINED WIN10SDK_PATH AND NOT EXISTS "${WIN10SDK_PATH}/include/winrt/windows.graphics.printing3d.h")
|
|
|
|
message("WIN10SDK_PATH is invalid: ${WIN10SDK_PATH}")
|
|
|
|
message("${WIN10SDK_PATH}/include/winrt/windows.graphics.printing3d.h was not found")
|
|
|
|
message("STL fixing by the Netfabb service will not be compiled")
|
|
|
|
unset(WIN10SDK_PATH)
|
|
|
|
endif()
|
2018-11-07 12:40:24 +00:00
|
|
|
if(WIN10SDK_PATH)
|
|
|
|
message("Building with Win10 Netfabb STL fixing service support")
|
|
|
|
add_definitions(-DHAS_WIN10SDK)
|
|
|
|
include_directories("${WIN10SDK_PATH}/Include")
|
|
|
|
else()
|
|
|
|
message("Building without Win10 Netfabb STL fixing service support")
|
|
|
|
endif()
|
2018-06-04 19:22:42 +00:00
|
|
|
endif()
|
|
|
|
|
2018-12-13 17:51:08 +00:00
|
|
|
if (APPLE)
|
2019-01-11 16:05:57 +00:00
|
|
|
message("OS X SDK Path: ${CMAKE_OSX_SYSROOT}")
|
|
|
|
if (CMAKE_OSX_DEPLOYMENT_TARGET)
|
|
|
|
message("OS X Deployment Target: ${CMAKE_OSX_DEPLOYMENT_TARGET}")
|
|
|
|
else ()
|
|
|
|
message("OS X Deployment Target: (default)")
|
2018-12-13 17:51:08 +00:00
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
2018-09-19 09:02:24 +00:00
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
|
|
find_package(PkgConfig REQUIRED)
|
2019-01-06 23:25:38 +00:00
|
|
|
|
|
|
|
if (CMAKE_VERSION VERSION_LESS "3.1")
|
|
|
|
# Workaround for an old CMake, which does not understand CMAKE_CXX_STANDARD.
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
|
|
|
endif()
|
2019-04-23 09:02:57 +00:00
|
|
|
|
|
|
|
# Boost on Raspberry-Pi does not link to pthreads.
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
|
|
find_package(Threads REQUIRED)
|
2018-09-19 09:02:24 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUXX)
|
|
|
|
# Adding -fext-numeric-literals to enable GCC extensions on definitions of quad float literals, which are required by Boost.
|
2019-01-06 23:25:38 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fext-numeric-literals" )
|
2018-09-19 09:02:24 +00:00
|
|
|
endif()
|
|
|
|
|
2019-08-01 14:03:52 +00:00
|
|
|
if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
|
2019-08-16 14:17:37 +00:00
|
|
|
if (NOT MINGW)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall" )
|
|
|
|
endif ()
|
2019-01-06 23:25:38 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-reorder" )
|
|
|
|
|
2018-09-19 09:27:04 +00:00
|
|
|
# On GCC and Clang, no return from a non-void function is a warning only. Here, we make it an error.
|
2018-10-29 16:04:27 +00:00
|
|
|
add_compile_options(-Werror=return-type)
|
2018-11-07 14:23:00 +00:00
|
|
|
|
2019-10-17 07:56:38 +00:00
|
|
|
# removes LOTS of extraneous Eigen warnings (GCC only supports it since 6.1)
|
|
|
|
# https://eigen.tuxfamily.org/bz/show_bug.cgi?id=1221
|
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" OR CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 6.0)
|
|
|
|
add_compile_options(-Wno-ignored-attributes) # Tamas: Eigen include dirs are marked as SYSTEM
|
|
|
|
endif()
|
2019-06-25 11:03:10 +00:00
|
|
|
|
|
|
|
#GCC generates loads of -Wunknown-pragmas when compiling igl. The fix is not easy due to a bug in gcc, see
|
|
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 or
|
|
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431
|
|
|
|
# We will turn the warning of for GCC for now:
|
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
|
|
|
add_compile_options(-Wno-unknown-pragmas)
|
|
|
|
endif()
|
|
|
|
|
2018-11-07 14:23:00 +00:00
|
|
|
if (SLIC3R_ASAN)
|
|
|
|
add_compile_options(-fsanitize=address -fno-omit-frame-pointer)
|
2018-11-26 18:02:30 +00:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address")
|
2019-10-14 14:30:07 +00:00
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -fsanitize=address")
|
2018-11-26 18:02:30 +00:00
|
|
|
|
2018-11-07 14:23:00 +00:00
|
|
|
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lasan")
|
|
|
|
endif ()
|
|
|
|
endif ()
|
2018-09-19 09:27:04 +00:00
|
|
|
endif()
|
|
|
|
|
2019-01-24 10:30:29 +00:00
|
|
|
if (APPLE)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror=partial-availability -Werror=unguarded-availability -Werror=unguarded-availability-new")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=partial-availability -Werror=unguarded-availability -Werror=unguarded-availability-new")
|
|
|
|
endif ()
|
|
|
|
|
2018-09-19 09:02:24 +00:00
|
|
|
# Where all the bundled libraries reside?
|
2019-01-04 11:06:25 +00:00
|
|
|
set(LIBDIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
|
|
|
set(LIBDIR_BIN ${CMAKE_CURRENT_BINARY_DIR}/src)
|
2018-09-19 09:02:24 +00:00
|
|
|
# For the bundled boost libraries (boost::nowide)
|
|
|
|
include_directories(${LIBDIR})
|
2019-01-04 11:06:25 +00:00
|
|
|
# For generated header files
|
|
|
|
include_directories(${LIBDIR_BIN}/platform)
|
2018-09-19 09:02:24 +00:00
|
|
|
# For libslic3r.h
|
2018-11-26 13:41:58 +00:00
|
|
|
include_directories(${LIBDIR}/clipper ${LIBDIR}/polypartition)
|
2018-09-19 09:02:24 +00:00
|
|
|
|
|
|
|
if(WIN32)
|
2019-08-16 14:17:37 +00:00
|
|
|
add_definitions(-D_USE_MATH_DEFINES -D_WIN32 -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS)
|
|
|
|
if(MSVC)
|
|
|
|
# BOOST_ALL_NO_LIB: Avoid the automatic linking of Boost libraries on Windows. Rather rely on explicit linking.
|
|
|
|
add_definitions(-DBOOST_ALL_NO_LIB -DBOOST_USE_WINAPI_VERSION=0x601 )
|
|
|
|
endif(MSVC)
|
|
|
|
endif(WIN32)
|
2018-09-19 09:02:24 +00:00
|
|
|
|
|
|
|
add_definitions(-DwxUSE_UNICODE -D_UNICODE -DUNICODE -DWXINTL_NO_GETTEXT_MACRO)
|
|
|
|
|
|
|
|
if (SLIC3R_PROFILE)
|
2019-05-13 13:14:33 +00:00
|
|
|
message("PrusaSlicer will be built with a Shiny invasive profiler")
|
2018-09-19 09:02:24 +00:00
|
|
|
add_definitions(-DSLIC3R_PROFILE)
|
|
|
|
endif ()
|
|
|
|
|
2018-09-21 18:11:33 +00:00
|
|
|
# Disable optimization even with debugging on.
|
2018-09-21 17:37:35 +00:00
|
|
|
if (0)
|
2019-05-13 13:14:33 +00:00
|
|
|
message(STATUS "Perl compiled without optimization. Disabling optimization for the PrusaSlicer build.")
|
2018-09-19 09:02:24 +00:00
|
|
|
message("Old CMAKE_CXX_FLAGS_RELEASE: ${CMAKE_CXX_FLAGS_RELEASE}")
|
|
|
|
message("Old CMAKE_CXX_FLAGS_RELWITHDEBINFO: ${CMAKE_CXX_FLAGS_RELEASE}")
|
|
|
|
message("Old CMAKE_CXX_FLAGS: ${CMAKE_CXX_FLAGS_RELEASE}")
|
2018-09-24 09:53:05 +00:00
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "/MD /Od /Zi /EHsc /DWIN32 /DTBB_USE_ASSERT")
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "/MD /Od /Zi /DWIN32 /DTBB_USE_ASSERT")
|
|
|
|
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "/MD /Od /Zi /EHsc /DWIN32 /DTBB_USE_ASSERT")
|
|
|
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "/MD /Od /Zi /DWIN32 /DTBB_USE_ASSERT")
|
|
|
|
set(CMAKE_CXX_FLAGS "/MD /Od /Zi /EHsc /DWIN32 /DTBB_USE_ASSERT")
|
|
|
|
set(CMAKE_C_FLAGS "/MD /Od /Zi /DWIN32 /DTBB_USE_ASSERT")
|
2018-09-19 09:02:24 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Find and configure boost
|
|
|
|
if(SLIC3R_STATIC)
|
|
|
|
# Use static boost libraries.
|
|
|
|
set(Boost_USE_STATIC_LIBS ON)
|
|
|
|
# Use boost libraries linked statically to the C++ runtime.
|
|
|
|
# set(Boost_USE_STATIC_RUNTIME ON)
|
|
|
|
endif()
|
|
|
|
#set(Boost_DEBUG ON)
|
2019-08-16 14:17:37 +00:00
|
|
|
# set(Boost_COMPILER "-mgw81")
|
2019-05-06 16:30:59 +00:00
|
|
|
if(NOT WIN32)
|
|
|
|
# boost::process was introduced first in version 1.64.0
|
|
|
|
set(MINIMUM_BOOST_VERSION "1.64.0")
|
|
|
|
endif()
|
2019-11-12 11:05:13 +00:00
|
|
|
set(_boost_components "system;filesystem;thread;log;locale;regex;chrono;atomic;date_time")
|
2019-10-22 14:32:21 +00:00
|
|
|
find_package(Boost ${MINIMUM_BOOST_VERSION} REQUIRED COMPONENTS ${_boost_components})
|
2019-06-13 11:15:10 +00:00
|
|
|
|
|
|
|
add_library(boost_libs INTERFACE)
|
|
|
|
add_library(boost_headeronly INTERFACE)
|
|
|
|
|
|
|
|
if (APPLE)
|
|
|
|
# BOOST_ASIO_DISABLE_KQUEUE : prevents a Boost ASIO bug on OS X: https://svn.boost.org/trac/boost/ticket/5339
|
|
|
|
target_compile_definitions(boost_headeronly INTERFACE BOOST_ASIO_DISABLE_KQUEUE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT SLIC3R_STATIC)
|
|
|
|
target_compile_definitions(boost_headeronly INTERFACE BOOST_LOG_DYN_LINK)
|
|
|
|
endif()
|
|
|
|
|
2019-10-22 14:32:21 +00:00
|
|
|
function(slic3r_remap_configs targets from_Cfg to_Cfg)
|
2019-10-24 15:32:05 +00:00
|
|
|
if(MSVC)
|
|
|
|
string(TOUPPER ${from_Cfg} from_CFG)
|
|
|
|
|
|
|
|
foreach(tgt ${targets})
|
|
|
|
if(TARGET ${tgt})
|
|
|
|
set_target_properties(${tgt} PROPERTIES MAP_IMPORTED_CONFIG_${from_CFG} ${to_Cfg})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endif()
|
2019-10-22 14:32:21 +00:00
|
|
|
endfunction()
|
|
|
|
|
2019-06-13 11:15:10 +00:00
|
|
|
if(TARGET Boost::system)
|
|
|
|
message(STATUS "Boost::boost exists")
|
|
|
|
target_link_libraries(boost_headeronly INTERFACE Boost::boost)
|
2019-10-23 14:24:59 +00:00
|
|
|
|
|
|
|
# Only from cmake 3.12
|
|
|
|
# list(TRANSFORM _boost_components PREPEND Boost:: OUTPUT_VARIABLE _boost_targets)
|
|
|
|
set(_boost_targets "")
|
|
|
|
foreach(comp ${_boost_components})
|
|
|
|
list(APPEND _boost_targets "Boost::${comp}")
|
|
|
|
endforeach()
|
|
|
|
|
2019-08-16 14:17:37 +00:00
|
|
|
target_link_libraries(boost_libs INTERFACE
|
2019-06-13 11:15:10 +00:00
|
|
|
boost_headeronly # includes the custom compile definitions as well
|
2019-10-22 14:32:21 +00:00
|
|
|
${_boost_targets}
|
2019-06-13 11:15:10 +00:00
|
|
|
)
|
2019-10-22 14:32:21 +00:00
|
|
|
slic3r_remap_configs("${_boost_targets}" RelWithDebInfo Release)
|
2019-06-13 11:15:10 +00:00
|
|
|
else()
|
|
|
|
target_include_directories(boost_headeronly INTERFACE ${Boost_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(boost_libs INTERFACE boost_headeronly ${Boost_LIBRARIES})
|
2018-09-19 09:02:24 +00:00
|
|
|
endif()
|
|
|
|
|
2019-10-22 14:32:21 +00:00
|
|
|
|
|
|
|
|
2018-09-19 09:02:24 +00:00
|
|
|
# Find and configure intel-tbb
|
|
|
|
if(SLIC3R_STATIC)
|
|
|
|
set(TBB_STATIC 1)
|
|
|
|
endif()
|
|
|
|
set(TBB_DEBUG 1)
|
|
|
|
find_package(TBB REQUIRED)
|
2019-10-14 10:50:08 +00:00
|
|
|
# include_directories(${TBB_INCLUDE_DIRS})
|
|
|
|
# add_definitions(${TBB_DEFINITIONS})
|
|
|
|
# if(MSVC)
|
|
|
|
# # Suppress implicit linking of the TBB libraries by the Visual Studio compiler.
|
|
|
|
# add_definitions(-D__TBB_NO_IMPLICIT_LINKAGE)
|
|
|
|
# endif()
|
2018-09-19 09:02:24 +00:00
|
|
|
# The Intel TBB library will use the std::exception_ptr feature of C++11.
|
2019-10-14 10:50:08 +00:00
|
|
|
# add_definitions(-DTBB_USE_CAPTURED_EXCEPTION=0)
|
2018-09-19 09:02:24 +00:00
|
|
|
|
|
|
|
find_package(CURL REQUIRED)
|
|
|
|
include_directories(${CURL_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
if (SLIC3R_STATIC)
|
|
|
|
if (NOT APPLE)
|
|
|
|
# libcurl is always linked dynamically to the system libcurl on OSX.
|
|
|
|
# On other systems, libcurl is linked statically if SLIC3R_STATIC is set.
|
|
|
|
add_definitions(-DCURL_STATICLIB)
|
|
|
|
endif()
|
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
|
|
# As of now, our build system produces a statically linked libcurl,
|
|
|
|
# which links the OpenSSL library dynamically.
|
|
|
|
find_package(OpenSSL REQUIRED)
|
|
|
|
message("OpenSSL include dir: ${OPENSSL_INCLUDE_DIR}")
|
|
|
|
message("OpenSSL libraries: ${OPENSSL_LIBRARIES}")
|
|
|
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
## OPTIONAL packages
|
|
|
|
|
|
|
|
# Find eigen3 or use bundled version
|
|
|
|
if (NOT SLIC3R_STATIC)
|
2019-07-13 15:56:43 +00:00
|
|
|
find_package(Eigen3 3.3)
|
2018-09-19 09:02:24 +00:00
|
|
|
endif ()
|
2019-07-13 15:56:43 +00:00
|
|
|
if (NOT EIGEN3_FOUND)
|
|
|
|
set(EIGEN3_FOUND 1)
|
2018-09-19 09:02:24 +00:00
|
|
|
set(EIGEN3_INCLUDE_DIR ${LIBDIR}/eigen/)
|
|
|
|
endif ()
|
2019-06-19 12:52:55 +00:00
|
|
|
include_directories(BEFORE SYSTEM ${EIGEN3_INCLUDE_DIR})
|
2018-09-19 09:02:24 +00:00
|
|
|
|
|
|
|
# Find expat or use bundled version
|
|
|
|
# Always use the system libexpat on Linux.
|
|
|
|
if (NOT SLIC3R_STATIC OR CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
|
|
find_package(EXPAT)
|
|
|
|
endif ()
|
|
|
|
if (NOT EXPAT_FOUND)
|
|
|
|
add_library(expat STATIC
|
|
|
|
${LIBDIR}/expat/xmlparse.c
|
|
|
|
${LIBDIR}/expat/xmlrole.c
|
|
|
|
${LIBDIR}/expat/xmltok.c
|
|
|
|
)
|
|
|
|
set(EXPAT_FOUND 1)
|
|
|
|
set(EXPAT_INCLUDE_DIRS ${LIBDIR}/expat/)
|
|
|
|
set(EXPAT_LIBRARIES expat)
|
|
|
|
endif ()
|
|
|
|
include_directories(${EXPAT_INCLUDE_DIRS})
|
|
|
|
|
2019-12-11 11:24:21 +00:00
|
|
|
find_package(OpenGL REQUIRED)
|
|
|
|
|
2018-09-19 09:02:24 +00:00
|
|
|
# Find glew or use bundled version
|
2019-12-11 11:24:21 +00:00
|
|
|
if (SLIC3R_STATIC)
|
|
|
|
set(GLEW_USE_STATIC_LIBS ON)
|
|
|
|
set(GLEW_VERBOSE ON)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
find_package(GLEW)
|
2018-09-19 09:02:24 +00:00
|
|
|
if (NOT GLEW_FOUND)
|
2019-12-11 11:24:21 +00:00
|
|
|
message(STATUS "GLEW not found, using bundled version.")
|
2018-09-19 09:02:24 +00:00
|
|
|
add_library(glew STATIC ${LIBDIR}/glew/src/glew.c)
|
2019-12-11 11:24:21 +00:00
|
|
|
set(GLEW_FOUND TRUE)
|
2018-09-19 09:02:24 +00:00
|
|
|
set(GLEW_INCLUDE_DIRS ${LIBDIR}/glew/include/)
|
2019-12-11 11:24:21 +00:00
|
|
|
target_compile_definitions(glew PUBLIC GLEW_STATIC)
|
|
|
|
target_include_directories(glew PUBLIC ${GLEW_INCLUDE_DIRS})
|
|
|
|
add_library(GLEW::GLEW ALIAS glew)
|
2018-09-19 09:02:24 +00:00
|
|
|
endif ()
|
|
|
|
|
2019-06-26 11:26:49 +00:00
|
|
|
# Find the Cereal serialization library
|
|
|
|
add_library(cereal INTERFACE)
|
|
|
|
target_include_directories(cereal INTERFACE include)
|
|
|
|
|
2018-10-12 12:19:08 +00:00
|
|
|
# l10n
|
2018-10-11 13:19:53 +00:00
|
|
|
set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/localization")
|
2019-12-22 10:54:23 +00:00
|
|
|
add_custom_target(gettext_make_pot
|
2019-08-28 14:19:46 +00:00
|
|
|
COMMAND xgettext --keyword=L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --debug
|
2018-10-11 13:19:53 +00:00
|
|
|
-f "${L10N_DIR}/list.txt"
|
2019-05-13 10:13:28 +00:00
|
|
|
-o "${L10N_DIR}/PrusaSlicer.pot"
|
2018-10-11 13:19:53 +00:00
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
COMMENT "Generate pot file from strings in the source tree"
|
|
|
|
)
|
2019-12-22 10:54:23 +00:00
|
|
|
add_custom_target(gettext_po_to_mo
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
COMMENT "Generate localization po files (binary) from mo files (texts)"
|
|
|
|
)
|
|
|
|
file(GLOB L10N_PO_FILES "${L10N_DIR}/*/PrusaSlicer*.po")
|
|
|
|
foreach(po_file ${L10N_PO_FILES})
|
|
|
|
GET_FILENAME_COMPONENT(po_dir "${po_file}" DIRECTORY)
|
|
|
|
SET(mo_file "${po_dir}/PrusaSlicer.mo")
|
|
|
|
add_custom_command(
|
|
|
|
TARGET gettext_po_to_mo PRE_BUILD
|
|
|
|
COMMAND msgfmt ARGS -o ${mo_file} ${po_file}
|
|
|
|
DEPENDS ${po_file}
|
|
|
|
)
|
|
|
|
endforeach()
|
2018-09-19 09:02:24 +00:00
|
|
|
|
2019-10-14 10:50:08 +00:00
|
|
|
find_package(NLopt 1.4 REQUIRED)
|
|
|
|
|
2019-10-25 11:09:25 +00:00
|
|
|
if(SLIC3R_STATIC)
|
|
|
|
set(OPENVDB_USE_STATIC_LIBS ON)
|
|
|
|
set(USE_BLOSC TRUE)
|
|
|
|
endif()
|
|
|
|
|
2019-12-17 15:53:45 +00:00
|
|
|
find_package(OpenVDB 5.0 REQUIRED COMPONENTS openvdb)
|
2019-10-29 15:27:53 +00:00
|
|
|
if(OpenVDB_FOUND)
|
|
|
|
slic3r_remap_configs(IlmBase::Half RelWithDebInfo Release)
|
2020-01-16 13:25:01 +00:00
|
|
|
slic3r_remap_configs(Blosc::blosc RelWithDebInfo Release)
|
2019-10-29 15:27:53 +00:00
|
|
|
endif()
|
2019-10-25 11:09:25 +00:00
|
|
|
|
2019-12-10 16:42:25 +00:00
|
|
|
set(TOP_LEVEL_PROJECT_DIR ${PROJECT_SOURCE_DIR})
|
|
|
|
function(prusaslicer_copy_dlls target)
|
|
|
|
if ("${CMAKE_SIZEOF_VOID_P}" STREQUAL "8")
|
|
|
|
set(_bits 64)
|
|
|
|
elseif ("${CMAKE_SIZEOF_VOID_P}" STREQUAL "4")
|
|
|
|
set(_bits 32)
|
|
|
|
endif ()
|
|
|
|
|
2020-02-06 10:59:02 +00:00
|
|
|
get_property(_is_multi GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
|
|
|
get_target_property(_alt_out_dir ${target} RUNTIME_OUTPUT_DIRECTORY)
|
|
|
|
|
|
|
|
if (_alt_out_dir)
|
|
|
|
set (_out_dir "${_alt_out_dir}")
|
|
|
|
elseif (_is_multi)
|
|
|
|
set (_out_dir "$<TARGET_PROPERTY:${target},BINARY_DIR>/$<CONFIG>")
|
|
|
|
else ()
|
|
|
|
set (_out_dir "$<TARGET_PROPERTY:${target},BINARY_DIR>")
|
|
|
|
endif ()
|
2019-12-10 16:42:25 +00:00
|
|
|
|
|
|
|
# This has to be a separate target due to the windows command line lenght limits
|
|
|
|
add_custom_command(TARGET ${target} POST_BUILD
|
2020-02-06 10:59:02 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${TOP_LEVEL_PROJECT_DIR}/deps/GMP/gmp/lib/win${_bits}/libgmp-10.dll ${_out_dir}
|
2019-12-10 16:42:25 +00:00
|
|
|
COMMENT "Copy gmp runtime to build tree"
|
|
|
|
VERBATIM)
|
|
|
|
|
|
|
|
add_custom_command(TARGET ${target} POST_BUILD
|
2020-02-06 10:59:02 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${TOP_LEVEL_PROJECT_DIR}/deps/MPFR/mpfr/lib/win${_bits}/libmpfr-4.dll ${_out_dir}
|
2019-12-10 16:42:25 +00:00
|
|
|
COMMENT "Copy mpfr runtime to build tree"
|
|
|
|
VERBATIM)
|
|
|
|
|
|
|
|
endfunction()
|
|
|
|
|
2019-10-25 11:09:25 +00:00
|
|
|
|
2019-05-13 13:14:33 +00:00
|
|
|
# libslic3r, PrusaSlicer GUI and the PrusaSlicer executable.
|
2018-09-19 09:02:24 +00:00
|
|
|
add_subdirectory(src)
|
2019-05-13 13:14:33 +00:00
|
|
|
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT PrusaSlicer_app_console)
|
2018-09-19 09:02:24 +00:00
|
|
|
|
|
|
|
# Perl bindings, currently only used for the unit / integration tests of libslic3r.
|
2018-09-19 15:19:06 +00:00
|
|
|
# Also runs the unit / integration tests.
|
|
|
|
#FIXME Port the tests into C++ to finally get rid of the Perl!
|
2018-10-22 12:53:48 +00:00
|
|
|
if (SLIC3R_PERL_XS)
|
|
|
|
add_subdirectory(xs)
|
|
|
|
endif ()
|
2018-03-12 08:39:32 +00:00
|
|
|
|
2018-11-02 10:57:57 +00:00
|
|
|
if(SLIC3R_BUILD_SANDBOXES)
|
|
|
|
add_subdirectory(sandboxes)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(SLIC3R_BUILD_TESTS)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif()
|
|
|
|
|
2019-01-04 11:06:25 +00:00
|
|
|
|
|
|
|
# Resources install target, configure fhs.hpp on UNIX
|
|
|
|
if (WIN32)
|
|
|
|
install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${CMAKE_INSTALL_PREFIX}/resources")
|
2019-07-16 21:12:07 +00:00
|
|
|
elseif (SLIC3R_FHS)
|
2019-05-13 13:14:33 +00:00
|
|
|
set(SLIC3R_FHS_RESOURCES "${CMAKE_INSTALL_FULL_DATAROOTDIR}/PrusaSlicer")
|
2019-01-04 11:06:25 +00:00
|
|
|
install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${SLIC3R_FHS_RESOURCES}")
|
2019-07-16 21:12:07 +00:00
|
|
|
else ()
|
|
|
|
install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${CMAKE_INSTALL_PREFIX}/resources")
|
2019-01-04 11:06:25 +00:00
|
|
|
endif ()
|
|
|
|
configure_file(${LIBDIR}/platform/unix/fhs.hpp.in ${LIBDIR_BIN}/platform/unix/fhs.hpp)
|