CMakeLists.txt 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. cmake_minimum_required(VERSION 3.13)
  2. project(PrusaSlicer)
  3. include("version.inc")
  4. include(GNUInstallDirs)
  5. include(CMakeDependentOption)
  6. set(SLIC3R_RESOURCES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/resources")
  7. file(TO_NATIVE_PATH "${SLIC3R_RESOURCES_DIR}" SLIC3R_RESOURCES_DIR_WIN)
  8. if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
  9. message(STATUS "No build type selected, default to Release")
  10. set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build type (default Release)" FORCE)
  11. endif()
  12. if(DEFINED ENV{SLIC3R_STATIC})
  13. set(SLIC3R_STATIC_INITIAL $ENV{SLIC3R_STATIC})
  14. else()
  15. if (MSVC OR MINGW OR APPLE)
  16. set(SLIC3R_STATIC_INITIAL 1)
  17. else()
  18. set(SLIC3R_STATIC_INITIAL 0)
  19. endif()
  20. endif()
  21. option(SLIC3R_STATIC "Compile PrusaSlicer with static libraries (Boost, TBB, glew)" ${SLIC3R_STATIC_INITIAL})
  22. option(SLIC3R_GUI "Compile PrusaSlicer with GUI components (OpenGL, wxWidgets)" 1)
  23. option(SLIC3R_FHS "Assume PrusaSlicer is to be installed in a FHS directory structure" 0)
  24. option(SLIC3R_PCH "Use precompiled headers" 1)
  25. option(SLIC3R_MSVC_COMPILE_PARALLEL "Compile on Visual Studio in parallel" 1)
  26. option(SLIC3R_MSVC_PDB "Generate PDB files on MSVC in Release mode" 1)
  27. option(SLIC3R_PERL_XS "Compile XS Perl module and enable Perl unit and integration tests" 0)
  28. option(SLIC3R_ASAN "Enable ASan on Clang and GCC" 0)
  29. option(SLIC3R_UBSAN "Enable UBSan on Clang and GCC" 0)
  30. option(SLIC3R_ENABLE_FORMAT_STEP "Enable compilation of STEP file support" 1)
  31. # If SLIC3R_FHS is 1 -> SLIC3R_DESKTOP_INTEGRATION is always 0, othrewise variable.
  32. CMAKE_DEPENDENT_OPTION(SLIC3R_DESKTOP_INTEGRATION "Allow perfoming desktop integration during runtime" 1 "NOT SLIC3R_FHS" 0)
  33. set(OPENVDB_FIND_MODULE_PATH "" CACHE PATH "Path to OpenVDB installation's find modules.")
  34. set(SLIC3R_GTK "2" CACHE STRING "GTK version to use with wxWidgets on Linux")
  35. set(IS_CROSS_COMPILE FALSE)
  36. if (SLIC3R_STATIC)
  37. # Prefer config scripts over find modules. This is helpful when building with
  38. # the static dependencies. Many libraries have their own export scripts
  39. # while having a Find<PkgName> module in standard cmake installation.
  40. # (e.g. CURL)
  41. set(CMAKE_FIND_PACKAGE_PREFER_CONFIG ON)
  42. endif ()
  43. if (APPLE)
  44. set(CMAKE_FIND_FRAMEWORK LAST)
  45. set(CMAKE_FIND_APPBUNDLE LAST)
  46. list(FIND CMAKE_OSX_ARCHITECTURES ${CMAKE_SYSTEM_PROCESSOR} _arch_idx)
  47. if (CMAKE_OSX_ARCHITECTURES AND _arch_idx LESS 0)
  48. set(IS_CROSS_COMPILE TRUE)
  49. endif ()
  50. endif ()
  51. # Proposal for C++ unit tests and sandboxes
  52. option(SLIC3R_BUILD_SANDBOXES "Build development sandboxes" OFF)
  53. option(SLIC3R_BUILD_TESTS "Build unit tests" ON)
  54. if (IS_CROSS_COMPILE)
  55. message("Detected cross compilation setup. Tests and encoding checks will be forcedly disabled!")
  56. set(SLIC3R_PERL_XS OFF CACHE BOOL "" FORCE)
  57. set(SLIC3R_BUILD_TESTS OFF CACHE BOOL "" FORCE)
  58. endif ()
  59. # Print out the SLIC3R_* cache options
  60. get_cmake_property(_cache_vars CACHE_VARIABLES)
  61. list (SORT _cache_vars)
  62. foreach (_cache_var ${_cache_vars})
  63. if("${_cache_var}" MATCHES "^SLIC3R_")
  64. message(STATUS "${_cache_var}: ${${_cache_var}}")
  65. endif ()
  66. endforeach()
  67. if (SLIC3R_GUI)
  68. add_definitions(-DSLIC3R_GUI)
  69. endif ()
  70. if(SLIC3R_DESKTOP_INTEGRATION)
  71. add_definitions(-DSLIC3R_DESKTOP_INTEGRATION)
  72. endif ()
  73. if (MSVC AND CMAKE_CXX_COMPILER_ID STREQUAL Clang)
  74. set(IS_CLANG_CL TRUE)
  75. # clang-cl can interpret SYSTEM header paths if -imsvc is used
  76. set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX "-imsvc")
  77. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall \
  78. -Wno-old-style-cast -Wno-reserved-id-macro -Wno-c++98-compat-pedantic")
  79. else ()
  80. set(IS_CLANG_CL FALSE)
  81. endif ()
  82. if (MSVC)
  83. if (SLIC3R_MSVC_COMPILE_PARALLEL AND NOT IS_CLANG_CL)
  84. add_compile_options(/MP)
  85. endif ()
  86. # /bigobj (Increase Number of Sections in .Obj file)
  87. # error C3859: virtual memory range for PCH exceeded; please recompile with a command line option of '-Zm90' or greater
  88. # Generate symbols at every build target, even for the release.
  89. add_compile_options(-bigobj -Zm520 /Zi)
  90. # Disable STL4007: Many result_type typedefs and all argument_type, first_argument_type, and second_argument_type typedefs are deprecated in C++17.
  91. #FIXME Remove this line after eigen library adapts to the new C++17 adaptor rules.
  92. add_compile_options(-D_SILENCE_CXX17_ADAPTOR_TYPEDEFS_DEPRECATION_WARNING)
  93. # Disable warnings on conversion from unsigned to signed (possible loss of data)
  94. # C4244: 'conversion' conversion from 'type1' to 'type2', possible loss of data. An integer type is converted to a smaller integer type.
  95. # C4267: The compiler detected a conversion from size_t to a smaller type.
  96. add_compile_options(/wd4244 /wd4267)
  97. # Enforce strict C++ conformance, so our code that compiles on MSVC also compiles on GCC and clang.
  98. add_compile_options(/permissive-)
  99. endif ()
  100. if (MINGW)
  101. add_compile_options(-Wa,-mbig-obj)
  102. endif ()
  103. if (NOT MSVC)
  104. # ARMs (Raspberry PI) use an unsigned char by default. Let's make it consistent for PrusaSlicer on all platforms.
  105. add_compile_options(-fsigned-char)
  106. endif ()
  107. # Display and check CMAKE_PREFIX_PATH
  108. message(STATUS "SLIC3R_STATIC: ${SLIC3R_STATIC}")
  109. if (NOT "${CMAKE_PREFIX_PATH}" STREQUAL "")
  110. message(STATUS "CMAKE_PREFIX_PATH: ${CMAKE_PREFIX_PATH} (from cache or command line)")
  111. set(PREFIX_PATH_CHECK ${CMAKE_PREFIX_PATH})
  112. elseif (NOT "$ENV{CMAKE_PREFIX_PATH}" STREQUAL "")
  113. message(STATUS "CMAKE_PREFIX_PATH: $ENV{CMAKE_PREFIX_PATH} (from environment)")
  114. set(PREFIX_PATH_CHECK $ENV{CMAKE_PREFIX_PATH})
  115. else ()
  116. message(STATUS "CMAKE_PREFIX_PATH: (default)")
  117. endif ()
  118. foreach (DIR ${PREFIX_PATH_CHECK})
  119. if (NOT EXISTS "${DIR}")
  120. message(WARNING "CMAKE_PREFIX_PATH element doesn't exist: ${DIR}")
  121. endif ()
  122. endforeach ()
  123. # Add our own cmake module path.
  124. list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/modules/)
  125. enable_testing ()
  126. # Enable C++17 language standard.
  127. set(CMAKE_CXX_STANDARD 17)
  128. set(CMAKE_CXX_STANDARD_REQUIRED ON)
  129. if(NOT WIN32)
  130. # Add DEBUG flags to debug builds.
  131. add_compile_options("$<$<CONFIG:DEBUG>:-DDEBUG>")
  132. endif()
  133. # To be able to link libslic3r with the Perl XS module.
  134. # Once we get rid of Perl and libslic3r is linked statically, we can get rid of -fPIC
  135. set(CMAKE_POSITION_INDEPENDENT_CODE ON)
  136. # WIN10SDK_PATH is used to point CMake to the WIN10 SDK installation directory.
  137. # We pick it from environment if it is not defined in another way
  138. if(WIN32)
  139. if(NOT DEFINED WIN10SDK_PATH)
  140. if(DEFINED ENV{WIN10SDK_PATH})
  141. set(WIN10SDK_PATH "$ENV{WIN10SDK_PATH}")
  142. endif()
  143. endif()
  144. if(DEFINED WIN10SDK_PATH)
  145. if (EXISTS "${WIN10SDK_PATH}/include/winrt/windows.graphics.printing3d.h")
  146. set(WIN10SDK_INCLUDE_PATH "${WIN10SDK_PATH}/Include")
  147. else()
  148. message("WIN10SDK_PATH is invalid: ${WIN10SDK_PATH}")
  149. message("${WIN10SDK_PATH}/include/winrt/windows.graphics.printing3d.h was not found")
  150. message("STL fixing by the Netfabb service will not be compiled")
  151. unset(WIN10SDK_PATH)
  152. endif()
  153. else()
  154. # Try to use the default Windows 10 SDK path.
  155. set(WIN10SDK_INCLUDE_PATH "$ENV{WindowsSdkDir}/Include/$ENV{WindowsSDKVersion}")
  156. if (NOT EXISTS "${WIN10SDK_INCLUDE_PATH}/winrt/windows.graphics.printing3d.h")
  157. message("${WIN10SDK_INCLUDE_PATH}/winrt/windows.graphics.printing3d.h was not found")
  158. message("STL fixing by the Netfabb service will not be compiled")
  159. unset(WIN10SDK_INCLUDE_PATH)
  160. endif()
  161. endif()
  162. if(WIN10SDK_INCLUDE_PATH)
  163. message("Building with Win10 Netfabb STL fixing service support")
  164. add_definitions(-DHAS_WIN10SDK)
  165. include_directories("${WIN10SDK_INCLUDE_PATH}")
  166. else()
  167. message("Building without Win10 Netfabb STL fixing service support")
  168. endif()
  169. endif()
  170. if (APPLE)
  171. message("OS X SDK Path: ${CMAKE_OSX_SYSROOT}")
  172. if (CMAKE_OSX_DEPLOYMENT_TARGET)
  173. message("OS X Deployment Target: ${CMAKE_OSX_DEPLOYMENT_TARGET}")
  174. else ()
  175. message("OS X Deployment Target: (default)")
  176. endif ()
  177. endif ()
  178. if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
  179. find_package(PkgConfig REQUIRED)
  180. if (CMAKE_VERSION VERSION_LESS "3.1")
  181. # Workaround for an old CMake, which does not understand CMAKE_CXX_STANDARD.
  182. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
  183. endif()
  184. # Boost on Raspberry-Pi does not link to pthreads.
  185. set(THREADS_PREFER_PTHREAD_FLAG ON)
  186. find_package(Threads REQUIRED)
  187. find_package(DBus REQUIRED)
  188. include_directories(${DBUS_INCLUDE_DIRS})
  189. endif()
  190. if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUXX)
  191. # Adding -fext-numeric-literals to enable GCC extensions on definitions of quad float literals, which are required by Boost.
  192. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fext-numeric-literals" )
  193. endif()
  194. if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
  195. if (NOT MINGW)
  196. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall" )
  197. endif ()
  198. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-reorder" )
  199. # On GCC and Clang, no return from a non-void function is a warning only. Here, we make it an error.
  200. add_compile_options(-Werror=return-type)
  201. # removes LOTS of extraneous Eigen warnings (GCC only supports it since 6.1)
  202. # https://eigen.tuxfamily.org/bz/show_bug.cgi?id=1221
  203. if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" OR CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 6.0)
  204. add_compile_options(-Wno-ignored-attributes) # Tamas: Eigen include dirs are marked as SYSTEM
  205. endif()
  206. # Clang reports legacy OpenGL calls as deprecated. Turn off the warning for now
  207. # to reduce the clutter, we know about this one. It should be reenabled after
  208. # we finally get rid of the deprecated code.
  209. if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
  210. add_compile_options(-Wno-deprecated-declarations)
  211. endif()
  212. # Clang reports misleading indentation for some IF blocks because of mixing tabs with spaces.
  213. if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
  214. add_compile_options(-Wno-misleading-indentation)
  215. endif()
  216. #GCC generates loads of -Wunknown-pragmas when compiling igl. The fix is not easy due to a bug in gcc, see
  217. # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 or
  218. # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431
  219. # We will turn the warning of for GCC for now:
  220. if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
  221. add_compile_options(-Wno-unknown-pragmas)
  222. endif()
  223. endif()
  224. if (SLIC3R_ASAN)
  225. # ASAN should be available on MSVC starting with Visual Studio 2019 16.9
  226. # https://devblogs.microsoft.com/cppblog/address-sanitizer-for-msvc-now-generally-available/
  227. add_compile_options(-fsanitize=address)
  228. if (NOT MSVC)
  229. add_compile_options(-fno-omit-frame-pointer)
  230. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
  231. set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address")
  232. set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -fsanitize=address")
  233. endif ()
  234. if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
  235. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lasan")
  236. endif ()
  237. endif ()
  238. if (SLIC3R_UBSAN)
  239. # Stacktrace for every report is enabled by default. It can be disabled by running PrusaSlicer with "UBSAN_OPTIONS=print_stacktrace=0".
  240. # Define macro SLIC3R_UBSAN to allow detection in the source code if this sanitizer is enabled.
  241. add_compile_definitions(SLIC3R_UBSAN)
  242. # Clang supports much more useful checks than GCC, so when Clang is detected, another checks will be enabled.
  243. # List of what GCC is checking: https://gcc.gnu.org/onlinedocs/gcc/Instrumentation-Options.html
  244. # List of what Clang is checking: https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html
  245. if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
  246. set(_ubsan_flags "-fsanitize=undefined,integer")
  247. else ()
  248. set(_ubsan_flags "-fsanitize=undefined")
  249. endif ()
  250. add_compile_options(${_ubsan_flags} -fno-omit-frame-pointer)
  251. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${_ubsan_flags}")
  252. set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${_ubsan_flags}")
  253. set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${_ubsan_flags}")
  254. if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
  255. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lubsan")
  256. endif ()
  257. endif ()
  258. if (APPLE)
  259. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror=partial-availability -Werror=unguarded-availability -Werror=unguarded-availability-new")
  260. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=partial-availability -Werror=unguarded-availability -Werror=unguarded-availability-new")
  261. endif ()
  262. # Where all the bundled libraries reside?
  263. set(LIBDIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
  264. set(LIBDIR_BIN ${CMAKE_CURRENT_BINARY_DIR}/src)
  265. # For the bundled boost libraries (boost::nowide)
  266. include_directories(${LIBDIR})
  267. # For generated header files
  268. include_directories(${LIBDIR_BIN}/platform)
  269. if(WIN32)
  270. add_definitions(-D_USE_MATH_DEFINES -D_WIN32 -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS)
  271. if(MSVC)
  272. # BOOST_ALL_NO_LIB: Avoid the automatic linking of Boost libraries on Windows. Rather rely on explicit linking.
  273. add_definitions(-DBOOST_ALL_NO_LIB -DBOOST_USE_WINAPI_VERSION=0x601 -DBOOST_SYSTEM_USE_UTF8 )
  274. # Force the source code encoding to UTF-8. See PrusaSlicer GH pull request #5583
  275. add_compile_options("$<$<C_COMPILER_ID:MSVC>:/utf-8>")
  276. add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/utf-8>")
  277. endif(MSVC)
  278. endif(WIN32)
  279. add_definitions(-DwxUSE_UNICODE -D_UNICODE -DUNICODE -DWXINTL_NO_GETTEXT_MACRO)
  280. # Disable unsafe implicit wxString to const char* / std::string and vice versa. This implicit conversion breaks the UTF-8 encoding quite often.
  281. add_definitions(-DwxNO_UNSAFE_WXSTRING_CONV)
  282. # Find and configure boost
  283. if(SLIC3R_STATIC)
  284. # Use static boost libraries.
  285. set(Boost_USE_STATIC_LIBS ON)
  286. # Use boost libraries linked statically to the C++ runtime.
  287. # set(Boost_USE_STATIC_RUNTIME ON)
  288. endif()
  289. #set(Boost_DEBUG ON)
  290. # set(Boost_COMPILER "-mgw81")
  291. # boost::process was introduced first in version 1.64.0,
  292. # boost::beast::detail::base64 was introduced first in version 1.66.0
  293. set(MINIMUM_BOOST_VERSION "1.66.0")
  294. set(_boost_components "system;filesystem;thread;log;locale;regex;chrono;atomic;date_time;iostreams")
  295. find_package(Boost ${MINIMUM_BOOST_VERSION} REQUIRED COMPONENTS ${_boost_components})
  296. add_library(boost_libs INTERFACE)
  297. add_library(boost_headeronly INTERFACE)
  298. if (APPLE)
  299. # BOOST_ASIO_DISABLE_KQUEUE : prevents a Boost ASIO bug on OS X: https://svn.boost.org/trac/boost/ticket/5339
  300. target_compile_definitions(boost_headeronly INTERFACE BOOST_ASIO_DISABLE_KQUEUE)
  301. endif()
  302. if(NOT SLIC3R_STATIC)
  303. target_compile_definitions(boost_headeronly INTERFACE BOOST_LOG_DYN_LINK)
  304. endif()
  305. function(slic3r_remap_configs targets from_Cfg to_Cfg)
  306. if(MSVC)
  307. string(TOUPPER ${from_Cfg} from_CFG)
  308. foreach(tgt ${targets})
  309. if(TARGET ${tgt})
  310. set_target_properties(${tgt} PROPERTIES MAP_IMPORTED_CONFIG_${from_CFG} ${to_Cfg})
  311. endif()
  312. endforeach()
  313. endif()
  314. endfunction()
  315. if(TARGET Boost::system)
  316. message(STATUS "Boost::boost exists")
  317. target_link_libraries(boost_headeronly INTERFACE Boost::boost)
  318. # Only from cmake 3.12
  319. # list(TRANSFORM _boost_components PREPEND Boost:: OUTPUT_VARIABLE _boost_targets)
  320. set(_boost_targets "")
  321. foreach(comp ${_boost_components})
  322. list(APPEND _boost_targets "Boost::${comp}")
  323. endforeach()
  324. target_link_libraries(boost_libs INTERFACE
  325. boost_headeronly # includes the custom compile definitions as well
  326. ${_boost_targets}
  327. )
  328. slic3r_remap_configs("${_boost_targets}" RelWithDebInfo Release)
  329. else()
  330. target_include_directories(boost_headeronly INTERFACE ${Boost_INCLUDE_DIRS})
  331. target_link_libraries(boost_libs INTERFACE boost_headeronly ${Boost_LIBRARIES})
  332. endif()
  333. # Find and configure intel-tbb
  334. if(SLIC3R_STATIC)
  335. set(TBB_STATIC 1)
  336. endif()
  337. set(TBB_DEBUG 1)
  338. find_package(TBB REQUIRED)
  339. slic3r_remap_configs(TBB::tbb RelWithDebInfo Release)
  340. slic3r_remap_configs(TBB::tbbmalloc RelWithDebInfo Release)
  341. # include_directories(${TBB_INCLUDE_DIRS})
  342. # add_definitions(${TBB_DEFINITIONS})
  343. # if(MSVC)
  344. # # Suppress implicit linking of the TBB libraries by the Visual Studio compiler.
  345. # add_definitions(-D__TBB_NO_IMPLICIT_LINKAGE)
  346. # endif()
  347. # The Intel TBB library will use the std::exception_ptr feature of C++11.
  348. # add_definitions(-DTBB_USE_CAPTURED_EXCEPTION=0)
  349. find_package(CURL REQUIRED)
  350. add_library(libcurl INTERFACE)
  351. target_link_libraries(libcurl INTERFACE CURL::libcurl)
  352. # Fixing curl's cmake config script bugs
  353. if (NOT WIN32)
  354. # Required by libcurl
  355. find_package(ZLIB REQUIRED)
  356. target_link_libraries(libcurl INTERFACE ZLIB::ZLIB)
  357. else()
  358. target_link_libraries(libcurl INTERFACE crypt32)
  359. endif()
  360. ## OPTIONAL packages
  361. # Find eigen3 or use bundled version
  362. if (NOT SLIC3R_STATIC)
  363. find_package(Eigen3 3.3)
  364. endif ()
  365. if (NOT EIGEN3_FOUND)
  366. set(EIGEN3_FOUND 1)
  367. set(EIGEN3_INCLUDE_DIR ${LIBDIR}/eigen/)
  368. endif ()
  369. include_directories(BEFORE SYSTEM ${EIGEN3_INCLUDE_DIR})
  370. # Find expat. We have our overriden FindEXPAT which exports libexpat target
  371. # no matter what.
  372. find_package(EXPAT REQUIRED)
  373. add_library(libexpat INTERFACE)
  374. if (TARGET EXPAT::EXPAT )
  375. target_link_libraries(libexpat INTERFACE EXPAT::EXPAT)
  376. elseif(TARGET expat::expat)
  377. target_link_libraries(libexpat INTERFACE expat::expat)
  378. endif ()
  379. find_package(PNG REQUIRED)
  380. set(OpenGL_GL_PREFERENCE "LEGACY")
  381. find_package(OpenGL REQUIRED)
  382. # Find glew or use bundled version
  383. if (SLIC3R_STATIC AND NOT SLIC3R_STATIC_EXCLUDE_GLEW)
  384. set(GLEW_USE_STATIC_LIBS ON)
  385. set(GLEW_VERBOSE ON)
  386. endif()
  387. find_package(GLEW REQUIRED)
  388. # Find the Cereal serialization library
  389. find_package(cereal REQUIRED)
  390. add_library(libcereal INTERFACE)
  391. if (NOT TARGET cereal::cereal)
  392. target_link_libraries(libcereal INTERFACE cereal)
  393. else()
  394. target_link_libraries(libcereal INTERFACE cereal::cereal)
  395. endif()
  396. # l10n
  397. set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/localization")
  398. add_custom_target(gettext_make_pot
  399. COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --debug --boost
  400. -f "${L10N_DIR}/list.txt"
  401. -o "${L10N_DIR}/PrusaSlicer.pot"
  402. COMMAND hintsToPot ${SLIC3R_RESOURCES_DIR} ${L10N_DIR}
  403. WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
  404. COMMENT "Generate pot file from strings in the source tree"
  405. )
  406. add_custom_target(gettext_merge_community_po_with_pot
  407. WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
  408. COMMENT "Merge community po with new generated pot file"
  409. )
  410. file(GLOB L10N_PO_FILES "${L10N_DIR}/*/PrusaSlicer*.po")
  411. # list of names of directories, which are licalized by PS internally
  412. list(APPEND PS_L10N_DIRS "cs" "de" "es" "fr" "it" "ja" "pl")
  413. foreach(po_file ${L10N_PO_FILES})
  414. GET_FILENAME_COMPONENT(po_dir "${po_file}" DIRECTORY)
  415. GET_FILENAME_COMPONENT(po_dir_name "${po_dir}" NAME)
  416. list(FIND PS_L10N_DIRS ${po_dir_name} found_dir_id)
  417. # found_dir_id==-1 means that po_dir_name wasn't found in PS_L10N_DIRS
  418. if(found_dir_id LESS 0)
  419. add_custom_command(
  420. TARGET gettext_merge_community_po_with_pot PRE_BUILD
  421. COMMAND msgmerge -N -o ${po_file} ${po_file} "${L10N_DIR}/PrusaSlicer.pot"
  422. # delete obsolete lines from resulting PO to avoid conflicts after a merging of it with wxWidgets.po
  423. COMMAND msgattrib --no-obsolete -o ${po_file} ${po_file}
  424. DEPENDS ${po_file}
  425. )
  426. endif()
  427. endforeach()
  428. add_custom_target(gettext_concat_wx_po_with_po
  429. WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
  430. COMMENT "Concatenate and merge wxWidgets localization po with PrusaSlicer po file"
  431. )
  432. file(GLOB L10N_PO_FILES "${L10N_DIR}/*/PrusaSlicer*.po")
  433. foreach(po_file ${L10N_PO_FILES})
  434. GET_FILENAME_COMPONENT(po_dir "${po_file}" DIRECTORY)
  435. GET_FILENAME_COMPONENT(po_dir_name "${po_dir}" NAME)
  436. SET(wx_po_file "${L10N_DIR}/wx_locale/${po_dir_name}.po")
  437. #SET(po_new_file "${po_dir}/PrusaSlicer_.po")
  438. add_custom_command(
  439. TARGET gettext_concat_wx_po_with_po PRE_BUILD
  440. COMMAND msgcat --use-first -o ${po_file} ${po_file} ${wx_po_file}
  441. # delete obsolete lines from resulting PO
  442. COMMAND msgattrib --no-obsolete -o ${po_file} ${po_file}
  443. DEPENDS ${po_file}
  444. )
  445. endforeach()
  446. add_custom_target(gettext_po_to_mo
  447. WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
  448. COMMENT "Generate localization mo files (binary) from po files (texts)"
  449. )
  450. file(GLOB L10N_PO_FILES "${L10N_DIR}/*/PrusaSlicer*.po")
  451. foreach(po_file ${L10N_PO_FILES})
  452. GET_FILENAME_COMPONENT(po_dir "${po_file}" DIRECTORY)
  453. SET(mo_file "${po_dir}/PrusaSlicer.mo")
  454. add_custom_command(
  455. TARGET gettext_po_to_mo PRE_BUILD
  456. COMMAND msgfmt ARGS --check-format -o ${mo_file} ${po_file}
  457. #COMMAND msgfmt ARGS --check-compatibility -o ${mo_file} ${po_file}
  458. DEPENDS ${po_file}
  459. )
  460. endforeach()
  461. find_package(NLopt 1.4 REQUIRED)
  462. slic3r_remap_configs(NLopt::nlopt RelWithDebInfo Release)
  463. if(SLIC3R_STATIC)
  464. set(OPENVDB_USE_STATIC_LIBS ON)
  465. set(USE_BLOSC TRUE)
  466. endif ()
  467. find_package(OpenVDB 5.0 COMPONENTS openvdb)
  468. if(OpenVDB_FOUND)
  469. slic3r_remap_configs(IlmBase::Half RelWithDebInfo Release)
  470. slic3r_remap_configs(Blosc::blosc RelWithDebInfo Release)
  471. else ()
  472. message(FATAL_ERROR "OpenVDB could not be found with the bundled find module. "
  473. "You can try to specify the find module location of your "
  474. "OpenVDB installation with the OPENVDB_FIND_MODULE_PATH cache variable.")
  475. endif ()
  476. set(TOP_LEVEL_PROJECT_DIR ${PROJECT_SOURCE_DIR})
  477. function(prusaslicer_copy_dlls target)
  478. if ("${CMAKE_SIZEOF_VOID_P}" STREQUAL "8")
  479. set(_bits 64)
  480. elseif ("${CMAKE_SIZEOF_VOID_P}" STREQUAL "4")
  481. set(_bits 32)
  482. endif ()
  483. get_property(_is_multi GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
  484. get_target_property(_alt_out_dir ${target} RUNTIME_OUTPUT_DIRECTORY)
  485. if (_alt_out_dir)
  486. set (_out_dir "${_alt_out_dir}")
  487. elseif (_is_multi)
  488. set (_out_dir "$<TARGET_PROPERTY:${target},BINARY_DIR>/$<CONFIG>")
  489. else ()
  490. set (_out_dir "$<TARGET_PROPERTY:${target},BINARY_DIR>")
  491. endif ()
  492. # This has to be a separate target due to the windows command line lenght limits
  493. add_custom_command(TARGET ${target} POST_BUILD
  494. COMMAND ${CMAKE_COMMAND} -E copy ${TOP_LEVEL_PROJECT_DIR}/deps/GMP/gmp/lib/win${_bits}/libgmp-10.dll ${_out_dir}
  495. COMMENT "Copy gmp runtime to build tree"
  496. VERBATIM)
  497. add_custom_command(TARGET ${target} POST_BUILD
  498. COMMAND ${CMAKE_COMMAND} -E copy ${TOP_LEVEL_PROJECT_DIR}/deps/MPFR/mpfr/lib/win${_bits}/libmpfr-4.dll ${_out_dir}
  499. COMMENT "Copy mpfr runtime to build tree"
  500. VERBATIM)
  501. endfunction()
  502. # libslic3r, PrusaSlicer GUI and the PrusaSlicer executable.
  503. add_subdirectory(src)
  504. set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT PrusaSlicer_app_console)
  505. add_dependencies(gettext_make_pot hintsToPot)
  506. # Perl bindings, currently only used for the unit / integration tests of libslic3r.
  507. # Also runs the unit / integration tests.
  508. #FIXME Port the tests into C++ to finally get rid of the Perl!
  509. if (SLIC3R_PERL_XS)
  510. add_subdirectory(xs)
  511. endif ()
  512. if(SLIC3R_BUILD_SANDBOXES)
  513. add_subdirectory(sandboxes)
  514. endif()
  515. if(SLIC3R_BUILD_TESTS)
  516. add_subdirectory(tests)
  517. endif()
  518. # Resources install target, configure fhs.hpp on UNIX
  519. if (WIN32)
  520. install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${CMAKE_INSTALL_PREFIX}/resources")
  521. elseif (SLIC3R_FHS)
  522. # CMAKE_INSTALL_FULL_DATAROOTDIR: read-only architecture-independent data root (share)
  523. set(SLIC3R_FHS_RESOURCES "${CMAKE_INSTALL_FULL_DATAROOTDIR}/PrusaSlicer")
  524. install(DIRECTORY ${SLIC3R_RESOURCES_DIR}/ DESTINATION ${SLIC3R_FHS_RESOURCES}
  525. PATTERN "*/udev" EXCLUDE
  526. )
  527. install(FILES src/platform/unix/PrusaSlicer.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications)
  528. install(FILES src/platform/unix/PrusaGcodeviewer.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications)
  529. foreach(SIZE 32 128 192)
  530. install(FILES ${SLIC3R_RESOURCES_DIR}/icons/PrusaSlicer_${SIZE}px.png
  531. DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/${SIZE}x${SIZE}/apps RENAME PrusaSlicer.png
  532. )
  533. install(FILES ${SLIC3R_RESOURCES_DIR}/icons/PrusaSlicer-gcodeviewer_${SIZE}px.png
  534. DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/${SIZE}x${SIZE}/apps RENAME PrusaSlicer-gcodeviewer.png
  535. )
  536. endforeach()
  537. install(DIRECTORY ${SLIC3R_RESOURCES_DIR}/udev/ DESTINATION lib/udev/rules.d)
  538. else ()
  539. install(FILES src/platform/unix/PrusaSlicer.desktop DESTINATION ${CMAKE_INSTALL_PREFIX}/resources/applications)
  540. install(FILES src/platform/unix/PrusaGcodeviewer.desktop DESTINATION ${CMAKE_INSTALL_PREFIX}/resources/applications)
  541. install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${CMAKE_INSTALL_PREFIX}/resources")
  542. endif ()
  543. configure_file(${LIBDIR}/platform/unix/fhs.hpp.in ${LIBDIR_BIN}/platform/unix/fhs.hpp)