22 lines
412 B
CMake
22 lines
412 B
CMake
cmake_minimum_required(VERSION 3.26.0)
|
|
|
|
if (NB_BUILD_TESTS)
|
|
enable_testing()
|
|
include(GoogleTest)
|
|
|
|
add_executable(TestData
|
|
./testFFT.cpp
|
|
)
|
|
target_link_libraries(TestData
|
|
NBData
|
|
GTest::gtest_main
|
|
)
|
|
gtest_discover_tests(TestData)
|
|
|
|
add_executable(FFTSpeedTest
|
|
./fftspeedtest.cpp
|
|
)
|
|
target_link_libraries(FFTSpeedTest
|
|
NBData
|
|
)
|
|
endif() |