Browse Source

deps: Fix dependency list

Vojtech Kral 6 years ago
parent
commit
0984c9a111
2 changed files with 8 additions and 2 deletions
  1. 8 1
      deps/CMakeLists.txt
  2. 0 1
      deps/deps-unix-static.cmake

+ 8 - 1
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

+ 0 - 1
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