From 5ea4194fbc3a280e35e2f5b93d7035acc04ccc0c Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Sat, 30 May 2020 14:34:17 -0400 Subject: [PATCH] fix newton-raphson root filename in CMAKE to ignore --- numerical_methods/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numerical_methods/CMakeLists.txt b/numerical_methods/CMakeLists.txt index 945fd99f..d9c678c3 100644 --- a/numerical_methods/CMakeLists.txt +++ b/numerical_methods/CMakeLists.txt @@ -8,7 +8,7 @@ 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) -set (no_msvc "newton-raphson-root.c" "durand_kerner_roots.c") +set (no_msvc "newton_raphson_root.c" "durand_kerner_roots.c") foreach( testsourcefile ${APP_SOURCES} ) # Do not compile these files that use complex.h on MSVC