diff options
| author | Ted Ross <tross@apache.org> | 2013-09-11 20:01:40 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2013-09-11 20:01:40 +0000 |
| commit | e78e5fca6b8a92c0984aaff3c751f85f8dd564b4 (patch) | |
| tree | 3c78c1e0243beb737dd07506871e390e36c28f02 | |
| parent | afa91b39595fca16f2e86835e937782aee8f0f3a (diff) | |
| download | qpid-python-e78e5fca6b8a92c0984aaff3c751f85f8dd564b4.tar.gz | |
NO-JIRA - Fixed the python path for installation in the CMakeLists file
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1522013 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/extras/dispatch/CMakeLists.txt | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/qpid/extras/dispatch/CMakeLists.txt b/qpid/extras/dispatch/CMakeLists.txt index 0a6853e63b..64c79149d0 100644 --- a/qpid/extras/dispatch/CMakeLists.txt +++ b/qpid/extras/dispatch/CMakeLists.txt @@ -85,6 +85,7 @@ set(CATCH_UNDEFINED "-Wl,--no-undefined") set(server_SOURCES src/agent.c src/alloc.c + src/bitmask.c src/buffer.c src/compose.c src/config.c @@ -122,31 +123,31 @@ install(FILES etc/qpid-dispatch.conf DESTINATION ${SYSCONF_INSTALL_DIR}) ## Python modules installation ## set(PYTHON_STUBS_SOURCES - src/py/qpid/dispatch/stubs/__init__.py - src/py/qpid/dispatch/stubs/ioadapter.py - src/py/qpid/dispatch/stubs/logadapter.py + python/qpid/dispatch/stubs/__init__.py + python/qpid/dispatch/stubs/ioadapter.py + python/qpid/dispatch/stubs/logadapter.py ) set(PYTHON_ROUTER_SOURCES - src/py/qpid/dispatch/router/link.py - src/py/qpid/dispatch/router/router_engine.py - src/py/qpid/dispatch/router/__init__.py - src/py/qpid/dispatch/router/adapter.py - src/py/qpid/dispatch/router/mobile.py - src/py/qpid/dispatch/router/node.py - src/py/qpid/dispatch/router/routing.py - src/py/qpid/dispatch/router/data.py - src/py/qpid/dispatch/router/configuration.py - src/py/qpid/dispatch/router/neighbor.py - src/py/qpid/dispatch/router/path.py - src/py/qpid/dispatch/router/binding.py + python/qpid/dispatch/router/link.py + python/qpid/dispatch/router/router_engine.py + python/qpid/dispatch/router/__init__.py + python/qpid/dispatch/router/adapter.py + python/qpid/dispatch/router/mobile.py + python/qpid/dispatch/router/node.py + python/qpid/dispatch/router/routing.py + python/qpid/dispatch/router/data.py + python/qpid/dispatch/router/configuration.py + python/qpid/dispatch/router/neighbor.py + python/qpid/dispatch/router/path.py + python/qpid/dispatch/router/binding.py ) set(PYTHON_CONFIG_SOURCES - src/py/qpid/dispatch/config/parser.py - src/py/qpid/dispatch/config/__init__.py - src/py/qpid/dispatch/config/schema.py - src/py/qpid/dispatch/__init__.py + python/qpid/dispatch/config/parser.py + python/qpid/dispatch/config/__init__.py + python/qpid/dispatch/config/schema.py + python/qpid/dispatch/__init__.py ) install(FILES ${PYTHON_STUBS_SOURCES} @@ -158,10 +159,10 @@ install(FILES ${PYTHON_ROUTER_SOURCES} install(FILES ${PYTHON_CONFIG_SOURCES} DESTINATION ${PYTHON_SITELIB_PACKAGES}/qpid/dispatch/config) -install(FILES src/py/qpid/__init__.py +install(FILES python/qpid/__init__.py DESTINATION ${PYTHON_SITELIB_PACKAGES}/qpid) -install(FILES src/py/qpid/dispatch/__init__.py +install(FILES python/qpid/dispatch/__init__.py DESTINATION ${PYTHON_SITELIB_PACKAGES}/qpid/dispatch) ## ## Build Tests |
