2026-06-14 11:00:22 -04:00
|
|
|
add_executable(deviceAttachmentSpecParams_tests
|
|
|
|
|
deviceAttachmentSpecParams_tests.cpp
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_include_directories(deviceAttachmentSpecParams_tests PRIVATE
|
|
|
|
|
${CMAKE_SOURCE_DIR}/include
|
|
|
|
|
${CMAKE_BINARY_DIR}/include
|
|
|
|
|
${CMAKE_SOURCE_DIR}/libspinscale/tests
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_link_libraries(deviceAttachmentSpecParams_tests
|
|
|
|
|
gtest_main
|
|
|
|
|
spinscale_test_support
|
|
|
|
|
${Boost_LIBRARIES}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_dependencies(deviceAttachmentSpecParams_tests gtest_main)
|
|
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
|
NAME deviceAttachmentSpecParams_tests
|
|
|
|
|
COMMAND deviceAttachmentSpecParams_tests)
|
2026-06-14 11:00:30 -04:00
|
|
|
|
|
|
|
|
add_executable(intrinThresholdParams_tests
|
|
|
|
|
intrinThresholdParams_tests.cpp
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_include_directories(intrinThresholdParams_tests PRIVATE
|
|
|
|
|
${CMAKE_SOURCE_DIR}/include
|
|
|
|
|
${CMAKE_BINARY_DIR}/include
|
|
|
|
|
${CMAKE_SOURCE_DIR}/libspinscale/tests
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_link_libraries(intrinThresholdParams_tests
|
|
|
|
|
gtest_main
|
|
|
|
|
spinscale_test_support
|
|
|
|
|
${Boost_LIBRARIES}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_dependencies(intrinThresholdParams_tests gtest_main)
|
|
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
|
NAME intrinThresholdParams_tests
|
|
|
|
|
COMMAND intrinThresholdParams_tests)
|
2026-06-14 11:02:18 -04:00
|
|
|
|
|
|
|
|
add_executable(stimulusProducerQualeIface_tests
|
|
|
|
|
stimulusProducerQualeIface_tests.cpp
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_include_directories(stimulusProducerQualeIface_tests PRIVATE
|
|
|
|
|
${CMAKE_SOURCE_DIR}/include
|
|
|
|
|
${CMAKE_BINARY_DIR}/include
|
|
|
|
|
${CMAKE_SOURCE_DIR}/libspinscale/tests
|
|
|
|
|
${CMAKE_SOURCE_DIR}/smocore/include
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_link_libraries(stimulusProducerQualeIface_tests
|
|
|
|
|
gtest_main
|
|
|
|
|
attachmentSupport
|
|
|
|
|
spinscale
|
|
|
|
|
spinscale_test_support
|
|
|
|
|
${Boost_LIBRARIES}
|
|
|
|
|
${OPENCL_LIBRARIES}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_dependencies(stimulusProducerQualeIface_tests gtest_main)
|
|
|
|
|
|
|
|
|
|
add_test(
|
|
|
|
|
NAME stimulusProducerQualeIface_tests
|
|
|
|
|
COMMAND stimulusProducerQualeIface_tests)
|