Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

File operation workflows #807

Merged
merged 10 commits into from
Aug 29, 2018
2 changes: 1 addition & 1 deletion packaging/wheel/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include *.sh *.py
include *.sh *.py *.in
include CMakeLists.txt VERSION_INFO README COPYING* LICENSE

recursive-include bindings *
Expand Down
21 changes: 20 additions & 1 deletion packaging/wheel/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,30 @@ else
cmake ../. -DCMAKE_INSTALL_PREFIX=$1
fi

res=$?
if [ "$res" -ne "0" ]; then
exit 1
fi

cd bindings/python
make
res=$?
if [ "$res" -ne "0" ]; then
exit 1
fi

make install
res=$?
if [ "$res" -ne "0" ]; then
exit 1
fi


cd bindings/python
python setup.py install
res=$?
if [ "$res" -ne "0" ]; then
exit 1
fi

cd $startdir
rm -r xrootdbuild
3 changes: 3 additions & 0 deletions src/XrdCl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ add_library(
XrdClLocalFileHandler.cc XrdClLocalFileHandler.hh
XrdClLocalFileTask.cc XrdClLocalFileTask.hh
XrdClZipListHandler.cc XrdClZipListHandler.hh
XrdClOperations.cc XrdClOperations.hh
)

target_link_libraries(
Expand Down Expand Up @@ -145,6 +146,8 @@ install(
XrdClPropertyList.hh
XrdClFileSystemUtils.hh
XrdClLog.hh
XrdClOperations.hh
XrdClOperationParams.hh
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/xrootd/XrdCl )

install(
Expand Down