CMAKE_MINIMUM_REQUIRED(VERSION 2.8)

IF(NOT CMAKE_BUILD_TYPE)
	SET(CMAKE_BUILD_TYPE "DEBUG")
ENDIF()

PROJECT("spuce tests")
message("Project spuce_tests")

FIND_PACKAGE(PythonLibs REQUIRED)
include_directories(${PYTHON_INCLUDE_DIRS})

add_library(spuce_debug plot_fft.cpp cfft.cpp gen_iir_df)
set_property(TARGET spuce_debug PROPERTY CXX_STANDARD 11)
set_property(TARGET spuce_debug PROPERTY POSITION_INDEPENDENT_CODE TRUE)

SET(PLOT_TARGETS
	chebyshev_iir chebyshev_iir_hpf
	chebyshev2_iir chebyshev2_iir_hpf
	elliptic_iir elliptic_iir_hpf
	butterworth_iir butterworth_iir_hpf
	butterworth_iir_bp butterworth_iir_bs
	elliptic_iir_bp iir iir_df iir_df2
  # fir
  fir maxflat remez kaiser sinc
  # window
  window
  # FIR bandpass/stop
  rc_bsf
	transform_bpf	transform_hpf transform_bsf
	transform_complex_bpf	transform_complex_bsf
  sinc_bsf
	# special filters
	iir_allpass1
	notch
  cic
  interp
  # other
  decimate
  decimate2
	)

FOREACH(mod ${PLOT_TARGETS})
	SET(SRC test_${mod}.cpp)
	ADD_EXECUTABLE(spuce_plot_${mod} ${SRC})
  TARGET_LINK_LIBRARIES(spuce_plot_${mod} spuce spuce_debug ${PYTHON_LIBRARY})
	set_property(TARGET spuce_plot_${mod} PROPERTY CXX_STANDARD 11)
	set_property(TARGET spuce_plot_${mod} PROPERTY POSITION_INDEPENDENT_CODE TRUE)
ENDFOREACH(mod ${EXTS})

SET(UNIT_TARGETS
  remez_estimate
	)

FOREACH(mod ${UNIT_TARGETS})
	SET(SRC test_${mod}.cpp)
	ADD_EXECUTABLE(spuce_${mod} ${SRC})
  TARGET_LINK_LIBRARIES(spuce_${mod} spuce spuce_debug ${PYTHON_LIBRARY})
	set_property(TARGET spuce_${mod} PROPERTY CXX_STANDARD 11)
	set_property(TARGET spuce_${mod} PROPERTY POSITION_INDEPENDENT_CODE TRUE)
ENDFOREACH(mod ${EXTS})

