diff --git a/dependencies/test-drive/CMakeLists.txt b/dependencies/test-drive/CMakeLists.txt index 8be2515..6950ff9 100644 --- a/dependencies/test-drive/CMakeLists.txt +++ b/dependencies/test-drive/CMakeLists.txt @@ -1,5 +1,3 @@ -# Get the macros and functions we'll need -include("${PROJECT_SOURCE_DIR}/cmake/helper.cmake") include(FetchContent) # If found, use the installed version; else, import the library @@ -30,4 +28,4 @@ set(test-drive_LIBRARY test-drive) set(test-drive_LIBRARY ${test-drive_LIBRARY} PARENT_SCOPE) # Make a parent-scope variable locating the include directory for test-drive -set(test-drive_INCLUDE_DIR ${test-drive_INCLUDE_DIR} PARENT_SCOPE) \ No newline at end of file +set(test-drive_INCLUDE_DIR ${test-drive_INCLUDE_DIR} PARENT_SCOPE) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 4f36b69..cf5c570 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,3 @@ -include("${PROJECT_SOURCE_DIR}/cmake/helper.cmake") - macro(build_tests testname) add_executable(${testname} ${ARGN}) link_library(${testname} fftpack ${PROJECT_INCLUDE_DIR})