Skip to content

Commit

Permalink
Update CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jturney committed Sep 15, 2023
1 parent c25adf1 commit 46fba46
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,16 @@ add_library(hptt::hptt ALIAS hptt)

install(
TARGETS hptt
LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib
ARCHIVE DESTINATION ${CMAKE_INSTALL_PREFIX}/lib)
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})

set(HPTT_INCLUDES
include/compute_node.h
include/hptt_types.h
include/hptt.h
include/macros.h
include/plan.h
include/utils.h
include/transpose.h)

install(FILES ${HPTT_INCLUDES} DESTINATION ${CMAKE_INSTALL_PREFIX}/include)
include/hptt/compute_node.h
include/hptt/hptt_types.h
include/hptt/hptt.h
include/hptt/macros.h
include/hptt/plan.h
include/hptt/utils.h
include/hptt/transpose.h)

install(FILES ${HPTT_INCLUDES} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})

0 comments on commit 46fba46

Please sign in to comment.