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
path: root/deps
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2018-10-31 19:29:21 +0300
committerVojtech Kral <vojtech@kral.hk>2018-10-31 19:29:21 +0300
commit0984c9a111741aabea6ca838ec7931f4023716d5 (patch)
treeeefe3ac98ca045bf2f2dc064b89100f70d212131 /deps
parent7e71aaffd5cf8e9b59662dce736f2556e92fae28 (diff)
deps: Fix dependency list
Diffstat (limited to 'deps')
-rw-r--r--deps/CMakeLists.txt9
-rw-r--r--deps/deps-unix-static.cmake1
2 files changed, 8 insertions, 2 deletions
diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt
index b02575617..eca86a7c5 100644
--- a/deps/CMakeLists.txt
+++ b/deps/CMakeLists.txt
@@ -48,7 +48,14 @@ else ()
endif()
add_custom_target(deps ALL
- DEPENDS dep_boost dep_tbb dep_libcurl dep_wxwidgets
+ DEPENDS
+ dep_boost
+ dep_tbb
+ dep_libcurl
+ dep_wxwidgets
+ dep_gtest
+ dep_nlopt
+ dep_libpng
)
# Note: I'm not using any of the LOG_xxx options in ExternalProject_Add() commands
diff --git a/deps/deps-unix-static.cmake b/deps/deps-unix-static.cmake
index a9ae1ea6a..cbba0f14d 100644
--- a/deps/deps-unix-static.cmake
+++ b/deps/deps-unix-static.cmake
@@ -63,7 +63,6 @@ ExternalProject_Add(dep_zlib
INSTALL_COMMAND ""
)
-
ExternalProject_Add(dep_libpng
DEPENDS dep_zlib
EXCLUDE_FROM_ALL 1