2020-04-08 02:29:39 +03:00
|
|
|
# If necessary, use the RELATIVE flag, otherwise each source file may be listed
|
|
|
|
# with full pathname. RELATIVE may makes it easier to extract an executable name
|
|
|
|
# automatically.
|
|
|
|
file( GLOB APP_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.c )
|
|
|
|
# file( GLOB APP_SOURCES ${CMAKE_SOURCE_DIR}/*.c )
|
|
|
|
# AUX_SOURCE_DIRECTORY(${CMAKE_CURRENT_SOURCE_DIR} APP_SOURCES)
|
2020-05-23 03:32:58 +03:00
|
|
|
|
2020-05-30 21:34:17 +03:00
|
|
|
set (no_msvc "newton_raphson_root.c" "durand_kerner_roots.c")
|
2020-05-23 03:32:58 +03:00
|
|
|
|
2020-04-08 02:29:39 +03:00
|
|
|
foreach( testsourcefile ${APP_SOURCES} )
|
2020-05-29 19:34:24 +03:00
|
|
|
# Do not compile these files that use complex.h on MSVC
|
2020-05-25 23:30:34 +03:00
|
|
|
if ( ${testsourcefile} IN_LIST no_msvc AND MSVC)
|
2020-05-23 03:32:58 +03:00
|
|
|
continue()
|
|
|
|
endif()
|
2020-04-08 02:29:39 +03:00
|
|
|
string( REPLACE ".c" "" testname ${testsourcefile} )
|
2020-04-20 19:04:25 +03:00
|
|
|
string( REPLACE ".C" "" testname ${testname} )
|
|
|
|
string( REPLACE " " "_" testname ${testname} )
|
2020-04-08 02:29:39 +03:00
|
|
|
|
|
|
|
add_executable( ${testname} ${testsourcefile} )
|
2020-05-25 23:30:34 +03:00
|
|
|
|
2020-04-08 02:29:39 +03:00
|
|
|
if(OpenMP_C_FOUND)
|
|
|
|
target_link_libraries(${testname} OpenMP::OpenMP_C)
|
|
|
|
endif()
|
2020-05-29 21:04:14 +03:00
|
|
|
|
|
|
|
if(MATH_LIBRARY)
|
|
|
|
target_link_libraries(${testname} ${MATH_LIBRARY})
|
2020-05-29 20:49:28 +03:00
|
|
|
endif()
|
2020-04-20 19:04:25 +03:00
|
|
|
install(TARGETS ${testname} DESTINATION "bin/numerical_methods")
|
2020-04-08 02:29:39 +03:00
|
|
|
|
|
|
|
endforeach( testsourcefile ${APP_SOURCES} )
|