diff --git a/CMakeLists.txt b/CMakeLists.txt index 43ccec77..2447687a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -67,11 +67,11 @@ target_include_directories(pmtv INTERFACE ${pmt_SOURCE_DIR}/include/) SET(FFTW_PREFIX ${CMAKE_CURRENT_BINARY_DIR}/fftw) SET(FFTW_CFLAGS "${CFLAGS} -w") if (EMSCRIPTEN) - SET(FFTW_CONFIG cd ${FFTW_PREFIX}/src/ && emconfigure ./configure --quiet --disable-fortran --prefix=${FFTW_PREFIX}/install) - SET(FFTW_BUILD emmake make -j CFLAGS=${FFTW_CFLAGS} --silent && emmake make install --silent && emmake make clean --silent) + SET(FFTW_CONFIG cd ${FFTW_PREFIX}/src/ && emconfigure ./configure --enable-silent-rules --quiet --disable-fortran --prefix=${FFTW_PREFIX}/install) + SET(FFTW_BUILD emmake make -j CFLAGS=${FFTW_CFLAGS} --silent V=0 && emmake make install --silent V=0 && emmake make clean --silent V=0) else () - SET(FFTW_CONFIG ${FFTW_PREFIX}/src/configure --quiet --disable-fortran --prefix=${FFTW_PREFIX}/install) - SET(FFTW_BUILD make -j CFLAGS=${FFTW_CFLAGS} --silent && make install --silent && make clean --silent) + SET(FFTW_CONFIG ${FFTW_PREFIX}/src/configure --enable-silent-rules --quiet --disable-fortran --prefix=${FFTW_PREFIX}/install) + SET(FFTW_BUILD make -j CFLAGS=${FFTW_CFLAGS} --silent V=0 && make install --silent V=0 && make clean --silent V=0) endif () SET(FFTW_INSTALL_COMMAND ${FFTW_CONFIG} && ${FFTW_BUILD} &&