Skip to content
Snippets Groups Projects
Commit a6ea9c19 authored by Martin Beseda's avatar Martin Beseda
Browse files

ENH: Removed GFortran linking

parent a2c95d97
No related branches found
No related tags found
No related merge requests found
...@@ -68,11 +68,11 @@ if ("${BUILD_LIB}" STREQUAL "yes") ...@@ -68,11 +68,11 @@ if ("${BUILD_LIB}" STREQUAL "yes")
set(THREADS_PREFER_PTHREAD_FLAG ON) set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED) find_package(Threads REQUIRED)
# GFortran linking # # GFortran linking
set(GFORT "") # set(GFORT "")
if(NOT WIN32) # if(NOT WIN32)
set(GFORT gfortran) # set(GFORT gfortran)
endif() # endif()
target_link_libraries( target_link_libraries(
lib4neuro lib4neuro
...@@ -85,7 +85,7 @@ if ("${BUILD_LIB}" STREQUAL "yes") ...@@ -85,7 +85,7 @@ if ("${BUILD_LIB}" STREQUAL "yes")
${OpenBLAS_LIBRARIES} ${OpenBLAS_LIBRARIES}
${BLAS_LIBRARIES} ${BLAS_LIBRARIES}
${LAPACK_LIBRARIES} ${LAPACK_LIBRARIES}
${GFORT} # ${GFORT}
) )
target_include_directories( target_include_directories(
...@@ -100,17 +100,6 @@ if ("${BUILD_LIB}" STREQUAL "yes") ...@@ -100,17 +100,6 @@ if ("${BUILD_LIB}" STREQUAL "yes")
${Boost_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS}
${ARMADILLO_INCLUDE_DIR} ${ARMADILLO_INCLUDE_DIR}
) )
#
# if(OpenBLAS_LOCAL)
# add_custom_command(
# TARGET lib4neuro
# PRE_BUILD
# COMMAND cmake .
# COMMAND cmake --build . -j ${N_CORES}
# WORKING_DIRECTORY ${ROOT_DIR}/external_dependencies/OpenBLAS
# COMMENT "Compiling OpenBLAS"
# )
# endif()
set_target_properties( set_target_properties(
lib4neuro lib4neuro
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment