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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-09-19 12:02:24 +0300
committerbubnikv <bubnikv@gmail.com>2018-09-19 12:02:24 +0300
commit0558b53493a77bae44831cf87bb0f59359828ef5 (patch)
treec3e8dbdf7d91a051c12d9ebbf7606d41047fea96 /xs/src/libnest2d/cmake_modules/DownloadNLopt.cmake
parent3ddaccb6410478ad02d8c0e02d6d8e6eb1785b9f (diff)
WIP: Moved sources int src/, separated most of the source code from Perl.
The XS was left only for the unit / integration tests, and it links libslic3r only. No wxWidgets are allowed to be used from Perl starting from now.
Diffstat (limited to 'xs/src/libnest2d/cmake_modules/DownloadNLopt.cmake')
-rw-r--r--xs/src/libnest2d/cmake_modules/DownloadNLopt.cmake32
1 files changed, 0 insertions, 32 deletions
diff --git a/xs/src/libnest2d/cmake_modules/DownloadNLopt.cmake b/xs/src/libnest2d/cmake_modules/DownloadNLopt.cmake
deleted file mode 100644
index 0f5392596..000000000
--- a/xs/src/libnest2d/cmake_modules/DownloadNLopt.cmake
+++ /dev/null
@@ -1,32 +0,0 @@
-include(DownloadProject)
-
-if (CMAKE_VERSION VERSION_LESS 3.2)
- set(UPDATE_DISCONNECTED_IF_AVAILABLE "")
-else()
- set(UPDATE_DISCONNECTED_IF_AVAILABLE "UPDATE_DISCONNECTED 1")
-endif()
-
-# set(NLopt_DIR ${CMAKE_BINARY_DIR}/nlopt)
-include(DownloadProject)
-download_project( PROJ nlopt
- GIT_REPOSITORY https://github.com/stevengj/nlopt.git
- GIT_TAG 1fcbcbf2fe8e34234e016cc43a6c41d3e8453e1f #master #nlopt-2.4.2
- # CMAKE_CACHE_ARGS -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX=${NLopt_DIR}
- ${UPDATE_DISCONNECTED_IF_AVAILABLE}
-)
-
-set(SHARED_LIBS_STATE BUILD_SHARED_LIBS)
-set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE)
-set(NLOPT_PYTHON OFF CACHE BOOL "" FORCE)
-set(NLOPT_OCTAVE OFF CACHE BOOL "" FORCE)
-set(NLOPT_MATLAB OFF CACHE BOOL "" FORCE)
-set(NLOPT_GUILE OFF CACHE BOOL "" FORCE)
-set(NLOPT_SWIG OFF CACHE BOOL "" FORCE)
-set(NLOPT_LINK_PYTHON OFF CACHE BOOL "" FORCE)
-
-add_subdirectory(${nlopt_SOURCE_DIR} ${nlopt_BINARY_DIR})
-
-set(NLopt_LIBS nlopt)
-set(NLopt_INCLUDE_DIR ${nlopt_BINARY_DIR}
- ${nlopt_BINARY_DIR}/src/api)
-set(SHARED_LIBS_STATE ${SHARED_STATE}) \ No newline at end of file