Skip to content
Snippets Groups Projects
Commit 48f81821 authored by Christoph Schwarzmeier's avatar Christoph Schwarzmeier
Browse files

Merge branch 'cmake_fft' into 'master'

Fix CMake conditional include of the FFT module

Closes #191

See merge request walberla/walberla!601
parents 391cc963 5e8e277e
No related merge requests found
......@@ -29,7 +29,7 @@ if ( CMAKE_CUDA_COMPILER )
endif()
add_subdirectory( domain_decomposition )
add_subdirectory( executiontree )
if ( FFTW3_FOUND )
if ( WALBERLA_BUILD_WITH_FFT AND FFTW3_FOUND )
add_subdirectory( fft )
endif()
add_subdirectory( field )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment