Blame view

morfeusz/python/CMakeLists.txt 2.66 KB
Michał Lenart authored
1
2
3

# SWIG
#set(CMAKE_SWIG_OUTDIR swig)
Michał Lenart authored
4
#~ FIND_PACKAGE (SWIG REQUIRED)
Michał Lenart authored
5
FIND_PACKAGE (PythonLibs)
Michał Lenart authored
6
#~ INCLUDE (${SWIG_USE_FILE})
Michał Lenart authored
7
8

set (PYMORFEUSZ_VERSION "0.1.0")
Michał Lenart authored
9
10

# SWIG Java
Michał Lenart authored
11
12
INCLUDE_DIRECTORIES (${PYTHON_INCLUDE_PATH})
INCLUDE_DIRECTORIES (..)
Michał Lenart authored
13
Michał Lenart authored
14
15
set (SWIG_PYTHON_OUTFILE swigPYTHON.cpp)
add_custom_command ( 
Michał Lenart authored
16
    OUTPUT ${SWIG_PYTHON_OUTFILE} morfeusz2.py
Michał Lenart authored
17
18
19
    COMMAND swig -python -c++ -o ${SWIG_PYTHON_OUTFILE} ${CMAKE_SOURCE_DIR}/morfeusz/morfeusz.i
    DEPENDS libmorfeusz
)
Michał Lenart authored
20
Michał Lenart authored
21
22
set (SETUP_PY_IN "${CMAKE_CURRENT_SOURCE_DIR}/setup.py.in")
set (SETUP_PY    "${CMAKE_CURRENT_BINARY_DIR}/setup.py")
Michał Lenart authored
23
set (DEPS        "${CMAKE_CURRENT_BINARY_DIR}/morfeusz2.py" "${SWIG_PYTHON_OUTFILE}")
Michał Lenart authored
24
set (OUTPUT      "${CMAKE_CURRENT_BINARY_DIR}/build")
Michał Lenart authored
25
Michał Lenart authored
26
configure_file (${SETUP_PY_IN} ${SETUP_PY})
Michał Lenart authored
27
Michał Lenart authored
28
add_custom_command (OUTPUT ${SETUP_PY}
Michał Lenart authored
29
30
                       COMMAND python
                       ARGS setup.py build
Michał Lenart authored
31
                       DEPENDS ${DEPS} ${SETUP_PY_IN})
Michał Lenart authored
32
Michał Lenart authored
33
add_custom_target (pymorfeusz DEPENDS ${SETUP_PY} libmorfeusz)
Michał Lenart authored
34
35
36
37
38
39
40

if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
    add_custom_target (install-python
        COMMAND python ${SETUP_PY} install --home=${CMAKE_INSTALL_PREFIX}
        DEPENDS ${pymorfeusz}
    )
    add_custom_target (package-python-bin
Michał Lenart authored
41
        COMMAND python ${SETUP_PY} bdist_egg -d "${TARGET_DIR}" --plat-name "${CMAKE_SYSTEM_NAME}-${ARCHITECTURE}"
Michał Lenart authored
42
43
        DEPENDS pymorfeusz
    )
Michał Lenart authored
44
    set (PACKAGE_DEPENDS "package-python-bin")
Michał Lenart authored
45
Michał Lenart authored
46
47
48
49
50
51
52
    if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
        add_custom_target (package-python-deb-sdist
            COMMAND python ${SETUP_PY} --command-packages=stdeb.command sdist_dsc --depends "${CPACK_DEBIAN_PACKAGE_NAME}"
            DEPENDS pymorfeusz
        )
        add_custom_target (package-python-deb-build
            COMMAND debuild -us -uc
Michał Lenart authored
53
            WORKING_DIRECTORY deb_dist/morfeusz2-${PYMORFEUSZ_VERSION}
Michał Lenart authored
54
55
56
            DEPENDS package-python-deb-sdist
        )
        add_custom_target(package-python-deb
Michał Lenart authored
57
            COMMAND mkdir -p "${TARGET_DIR}" && cp ${CMAKE_CURRENT_BINARY_DIR}/deb_dist/python-morfeusz2*.deb "${TARGET_DIR}"
Michał Lenart authored
58
59
60
            DEPENDS package-python-deb-build
        )
        list (APPEND PACKAGE_DEPENDS package-python-deb)
Michał Lenart authored
61
62
63
64
65
66
    #~ elseif (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
        #~ add_custom_target (package-python-win-installer
            #~ COMMAND python ${SETUP_PY} bdist_wininst -d ${TARGET_DIR} --plat-name "${CMAKE_SYSTEM_NAME}-${ARCHITECTURE}"
            #~ DEPENDS pymorfeusz
        #~ )
        #~ list (APPEND PACKAGE_DEPENDS package-python-win-installer)
Michał Lenart authored
67
68
69
70
    endif ()
    message ("PACKAGE_DEPENDS=${PACKAGE_DEPENDS}")
    add_custom_target (package-python
        DEPENDS pymorfeusz ${PACKAGE_DEPENDS})
Michał Lenart authored
71
endif ()