Skip to content

Commit

Permalink
Use explicit include() for dependencies to version control tarballs. …
Browse files Browse the repository at this point in the history
…Also fill in dependencies
  • Loading branch information
DocSavage committed Oct 18, 2012
1 parent 052823c commit 322c1f6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if (NOT EXISTS ${FLYEM_BUILD_REPO_DIR}/python.cmake)
message ("Installing flyem-build repo...")
ExternalProject_Add(flyem-build
PREFIX ${FLYEM_BUILD_DIR}
GIT_REPOSITORY https://github.com/janelia-flyem/flyem-build.git
GIT_REPOSITORY http://github.com/janelia-flyem/flyem-build.git
UPDATE_COMMAND ""
PATCH_COMMAND ""
CONFIGURE_COMMAND ""
Expand All @@ -49,22 +49,22 @@ else ()

# Download and compile dependencies
include (cython)
include (h5py)
include (numpy)
include (scipy)
include (vigra)
include (h5py)
include (pil)
include (vigra)
include (networkx)

include (EasyInstall)
easy_install (networkx)
easy_install (progressbar)
easy_install (scikits-image)
easy_install (scikit-learn)
include (progressbar)
include (matplotlib)
include (scikit-image)
include (scikit-learn)

# Install ray
add_custom_target (ray ALL
DEPENDS ${APP_DEPENDENCIES}
COMMENT "Building ray and all dependencies...")

###############################################################################
endif()
endif()

0 comments on commit 322c1f6

Please sign in to comment.