Skip to content

Commit

Permalink
Remove BLAS and LAPACK dependencies from chemkit
Browse files Browse the repository at this point in the history
This removes the dependence on the BLAS and LAPACK
libraries from chemkit.
  • Loading branch information
kylelutz committed May 10, 2011
1 parent 335f828 commit f9eac63
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 281 deletions.
1 change: 0 additions & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
- CMake - http://www.cmake.org
- Boost - http://www.boost.org
- Qt Framework (version 4.7 or later) - http://qt.nokia.com
- BLAS & LAPACK libraries
- Eigen (version 3.0 or later) - http://eigen.tuxfamily.org/

=== Compiling =================================================================
Expand Down
1 change: 0 additions & 1 deletion include/chemkit/blas.h

This file was deleted.

1 change: 0 additions & 1 deletion include/chemkit/lapack.h

This file was deleted.

4 changes: 1 addition & 3 deletions src/chemkit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ set(HEADERS
atom-inline.h
atommapping.h
atomtyper.h
blas.h
bond.h
bond-inline.h
bondpredictor.h
Expand Down Expand Up @@ -41,7 +40,6 @@ set(HEADERS
genericvector-inline.h
geometry.h
internalcoordinates.h
lapack.h
lineformat.h
matrix.h
moiety.h
Expand Down Expand Up @@ -150,7 +148,7 @@ add_definitions(
)

add_library(chemkit SHARED ${SOURCES} ${MOC_SOURCES})
target_link_libraries(chemkit blas lapack ${QT_LIBRARIES})
target_link_libraries(chemkit ${QT_LIBRARIES})
install(TARGETS chemkit DESTINATION lib)

# install header files
Expand Down
166 changes: 0 additions & 166 deletions src/chemkit/blas.h

This file was deleted.

107 changes: 0 additions & 107 deletions src/chemkit/lapack.h

This file was deleted.

1 change: 0 additions & 1 deletion src/chemkit/staticmatrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@

#include "staticvector.h"

#include "blas.h"
#include "commainitializer.h"

namespace chemkit {
Expand Down
2 changes: 1 addition & 1 deletion src/graphics/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ add_definitions(
include_directories(../../include)

add_library(chemkit-graphics SHARED ${SOURCES} ${MOC_SOURCES} ${RCC_SOURCES})
target_link_libraries(chemkit-graphics chemkit blas lapack ${QT_LIBRARIES} ${OPENGL_LIBRARIES})
target_link_libraries(chemkit-graphics chemkit ${QT_LIBRARIES} ${OPENGL_LIBRARIES})
install(TARGETS chemkit-graphics DESTINATION lib)

# install header files
Expand Down

0 comments on commit f9eac63

Please sign in to comment.