Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ else (NOT_ALPS_BUILD_PYTHON)
option(ALPS_BUILD_PYTHON "Build ALPS python extentions" ON)
endif (NOT_ALPS_BUILD_PYTHON)

option(ALPS_INSTALL_DEPRECATED "Install deprecated headers for ALPS" OFF)
option(ALPS_BUILD_DEVELOPER_TOOLS "Build tools used by developers to maintain ALPS" OFF)
option(ALPS_ENABLE_OPENMP "Enable OpenMP parallelization" OFF)
option(ALPS_ENABLE_OPENMP_WORKER "Enable OpenMP worker support" OFF)
Expand Down Expand Up @@ -461,11 +460,6 @@ if (ALPS_INSTALL_HEADERS)
FILES_MATCHING PATTERN "*.h" PATTERN "*.hpp" PATTERN "*.ipp"
)
install(FILES ${PROJECT_BINARY_DIR}/src/alps/config.h ${PROJECT_BINARY_DIR}/src/alps/version.h DESTINATION ${ALPS_HEADER_DIR}/alps COMPONENT headers)
if (ALPS_INSTALL_DEPRECATED)
install(DIRECTORY legacy/alps COMPONENT deprecated DESTINATION ${ALPS_HEADER_DIR}
FILES_MATCHING PATTERN "*.h" PATTERN "*.hpp"
)
endif (ALPS_INSTALL_DEPRECATED)
endif(ALPS_INSTALL_HEADERS)

install(DIRECTORY lib/xml DESTINATION ${ALPS_XML_PATH} COMPONENT xml
Expand Down
43 changes: 0 additions & 43 deletions legacy/alps/copyright.h

This file was deleted.

66 changes: 0 additions & 66 deletions legacy/alps/math.hpp

This file was deleted.

42 changes: 0 additions & 42 deletions legacy/alps/osiris/os.h

This file was deleted.

43 changes: 0 additions & 43 deletions legacy/alps/vectorio.h

This file was deleted.

6 changes: 3 additions & 3 deletions script/linecount.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# http://www.boost.org/LICENSE_1_0.txt)

echo "ALPS Libraries:"
echo C++:; find legacy lib src tool -name "*.h" -or -name "*.hpp" -or -name "*.C" -or -name "*.cpp" | grep -v svn | grep -v boost | xargs wc -l | tail -1
echo py:; find legacy lib src tool -name "*.py" | grep -v svn | grep -v boost | xargs wc -l | tail -1
echo f90:; find legacy lib src tool -name "*.f90" | grep -v svn | grep -v boost | xargs wc -l | tail -1
echo C++:; find lib src tool -name "*.h" -or -name "*.hpp" -or -name "*.C" -or -name "*.cpp" | grep -v svn | grep -v boost | xargs wc -l | tail -1
echo py:; find lib src tool -name "*.py" | grep -v svn | grep -v boost | xargs wc -l | tail -1
echo f90:; find lib src tool -name "*.f90" | grep -v svn | grep -v boost | xargs wc -l | tail -1

echo "ALPS Applications:"
echo C++:; find applications -name "*.h" -or -name "*.hpp" -or -name "*.C" -or -name "*.cpp" | grep -v svn | grep -v boost | xargs wc -l | tail -1
Expand Down
Loading