From 5c792e4093fc91b9fe1a59cd6456b8c2799a6266 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Sun, 27 Oct 2024 23:05:57 +0000 Subject: [PATCH] Fix Linux build --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 684253a0..786cb4a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -170,7 +170,7 @@ endif() # Dependency: fftw3 #------------------------------------------------------------------------------- if (NOT CMAKE_SYSTEM_NAME STREQUAL "Darwin") - if (CMAKE_SYSTEM_NAME STREQUAL "Windows")) + if (CMAKE_SYSTEM_NAME STREQUAL "Windows") set(FFTW_BUILD_DIR "${PROJECT_SOURCE_DIR}/../fftw-3.3.5-dll64" CACHE PATH "Path to prebuilt FFTW library (will use find_library if blank)") include_directories("${FFTW_BUILD_DIR}") add_definitions(-DFFT_FFTW)