-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3b2626
commit a155ccc
Showing
4 changed files
with
14 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
message(STATUS "chowdsp_fft -- Configuring benchmarks ${CMAKE_BINARY_DIR}/_deps/pffft-src") | ||
|
||
add_executable(bench_chowsdp_fft bench.cpp) | ||
target_link_libraries(bench_chowsdp_fft PRIVATE chowdsp_fft) | ||
target_include_directories(bench_chowsdp_fft PRIVATE ${CMAKE_BINARY_DIR}/_deps/pffft-src) | ||
target_compile_definitions(bench_chowsdp_fft PRIVATE _USE_MATH_DEFINES=1) | ||
add_executable(bench_chowdsp_fft bench.cpp) | ||
target_link_libraries(bench_chowdsp_fft PRIVATE chowdsp_fft) | ||
target_include_directories(bench_chowdsp_fft PRIVATE ${CMAKE_BINARY_DIR}/_deps/pffft-src) | ||
target_compile_definitions(bench_chowdsp_fft PRIVATE _USE_MATH_DEFINES=1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ CPMAddPackage("gh:catchorg/[email protected]") | |
include(${Catch2_SOURCE_DIR}/extras/Catch.cmake) | ||
CPMAddPackage("bb:jpommier/pffft#fbc4058602803f40dc554b8a5d2bcc694c005f2f") | ||
|
||
add_executable(test_chowsdp_fft_cpp test.cpp ${pffft_SOURCE_DIR}/pffft.c) | ||
target_link_libraries(test_chowsdp_fft_cpp PRIVATE chowdsp_fft Catch2::Catch2WithMain) | ||
target_include_directories(test_chowsdp_fft_cpp PRIVATE ${pffft_SOURCE_DIR}) | ||
target_compile_definitions(test_chowsdp_fft_cpp PRIVATE _USE_MATH_DEFINES=1) | ||
add_executable(test_chowdsp_fft_cpp test.cpp ${pffft_SOURCE_DIR}/pffft.c) | ||
target_link_libraries(test_chowdsp_fft_cpp PRIVATE chowdsp_fft Catch2::Catch2WithMain) | ||
target_include_directories(test_chowdsp_fft_cpp PRIVATE ${pffft_SOURCE_DIR}) | ||
target_compile_definitions(test_chowdsp_fft_cpp PRIVATE _USE_MATH_DEFINES=1) | ||
|
||
add_executable(test_chowsdp_fft_c test.c ${pffft_SOURCE_DIR}/pffft.c) | ||
target_link_libraries(test_chowsdp_fft_c PRIVATE chowdsp_fft) | ||
target_include_directories(test_chowsdp_fft_c PRIVATE ${pffft_SOURCE_DIR}) | ||
target_compile_definitions(test_chowsdp_fft_c PRIVATE _USE_MATH_DEFINES=1) | ||
add_executable(test_chowdsp_fft_c test.c ${pffft_SOURCE_DIR}/pffft.c) | ||
target_link_libraries(test_chowdsp_fft_c PRIVATE chowdsp_fft) | ||
target_include_directories(test_chowdsp_fft_c PRIVATE ${pffft_SOURCE_DIR}) | ||
target_compile_definitions(test_chowdsp_fft_c PRIVATE _USE_MATH_DEFINES=1) |