Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
renamed aux folder as misc
  • Loading branch information
kadircs committed Apr 8, 2019
1 parent c8287ee commit 7139994
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions CMakeLists.txt
Expand Up @@ -1315,15 +1315,15 @@ set( HICMA_RUNTIME_SRC
)

set( HICMA_AUX_SRC
${CMAKE_SOURCE_DIR}/aux/compute/zuncompress.c
${CMAKE_SOURCE_DIR}/aux/compute/zdiag.c
${CMAKE_SOURCE_DIR}/aux/compute/zproblem.c
${CMAKE_SOURCE_DIR}/aux/compute/znormest.c
${CMAKE_SOURCE_DIR}/aux/descutil/descprint.c
${CMAKE_SOURCE_DIR}/aux/descutil/descsame.c
${CMAKE_SOURCE_DIR}/aux/compute/zstat.c
${CMAKE_SOURCE_DIR}/misc/compute/zuncompress.c
${CMAKE_SOURCE_DIR}/misc/compute/zdiag.c
${CMAKE_SOURCE_DIR}/misc/compute/zproblem.c
${CMAKE_SOURCE_DIR}/misc/compute/znormest.c
${CMAKE_SOURCE_DIR}/misc/descutil/descprint.c
${CMAKE_SOURCE_DIR}/misc/descutil/descsame.c
${CMAKE_SOURCE_DIR}/misc/compute/zstat.c
)
include_directories( ${CMAKE_SOURCE_DIR}/aux/include )
include_directories( ${CMAKE_SOURCE_DIR}/misc/include )

link_directories(${STARSH_LIBRARY_DIRS})
link_directories(${STARPU_LIBRARY_DIRS})
Expand Down Expand Up @@ -1353,10 +1353,10 @@ install( FILES include/hicma_struct.h
DESTINATION include )
install( FILES include/hicma_z.h
DESTINATION include )
install( FILES aux/include/auxcompute_z.h
DESTINATION include/aux )
install( FILES aux/include/auxdescutil.h
DESTINATION include/aux )
install( FILES misc/include/auxcompute_z.h
DESTINATION include/misc )
install( FILES misc/include/auxdescutil.h
DESTINATION include/misc )

###############################################################################
# Documentation #
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion testing/CMakeLists.txt
Expand Up @@ -23,7 +23,7 @@ set(libs_for_testings)
list(APPEND libs_for_testings hicma chameleon)

add_custom_target(testing_include ALL SOURCES ${TESTING_AUX_HDRS})
include_directories( ${CMAKE_SOURCE_DIR}/aux/include )
include_directories( ${CMAKE_SOURCE_DIR}/misc/include )
include_directories( ${CMAKE_SOURCE_DIR}/chameleon/ )
include_directories(BEFORE ${CMAKE_SOURCE_DIR}/timing )
foreach(_timing ${TESTINGS_SRC})
Expand Down
2 changes: 1 addition & 1 deletion timing/CMakeLists.txt
Expand Up @@ -24,7 +24,7 @@ set(libs_for_timings)
list(APPEND libs_for_timings hicma chameleon)

add_custom_target(timing_include ALL SOURCES ${TIMING_AUX_HDRS})
include_directories( ${CMAKE_SOURCE_DIR}/aux/include )
include_directories( ${CMAKE_SOURCE_DIR}/misc/include )
include_directories( ${CMAKE_SOURCE_DIR}/chameleon/ )
foreach(_timing ${TIMINGS_SRC})
get_filename_component(_name_exe ${_timing} NAME_WE)
Expand Down

0 comments on commit 7139994

Please sign in to comment.