forked from fblumenthal/buildem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cython.cmake
36 lines (28 loc) · 865 Bytes
/
cython.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# Install cython from source
#
if (NOT cython_NAME)
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
include (ExternalProject)
include (ExternalSource)
include (BuildSupport)
include (python)
external_source (cython
0.17.1
Cython-0.17.1.tar.gz
f0bd2494dbe080a1185b61fa358135f2
http://cython.org/release)
message ("Installing ${cython_NAME} into FlyEM build area: ${BUILDEM_DIR} ...")
ExternalProject_Add(${cython_NAME}
DEPENDS ${python_NAME}
PREFIX ${BUILDEM_DIR}
URL ${cython_URL}
URL_MD5 ${cython_MD5}
UPDATE_COMMAND ""
CONFIGURE_COMMAND ""
BUILD_COMMAND ${BUILDEM_ENV_STRING} ${PYTHON_EXE} setup.py install
BUILD_IN_SOURCE 1
INSTALL_COMMAND ""
)
set_target_properties(${cython_NAME} PROPERTIES EXCLUDE_FROM_ALL ON)
endif (NOT cython_NAME)