diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a22b2f3f..c86be026 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -49,7 +49,7 @@ ADD_EXECUTABLE(test_private_memory tests/test_private_memory.c) ADD_EXECUTABLE(test_constant_memory tests/test_constant_memory.c) ADD_EXECUTABLE(test_memory_leak tests/test_memory_leak.c) ADD_EXECUTABLE(test_perf_report tests/test_perf_report.c) -#ADD_EXECUTABLE(test_trigo tests/test_trigo.c) +ADD_EXECUTABLE(mandelbrot tests/mandelbrot.c) ADD_EXECUTABLE(mersenneTwister tests/mersenneTwister.c) ADD_EXECUTABLE(blackscholes tests/blackscholes.c) ADD_EXECUTABLE(matmul tests/matmul.c) @@ -72,7 +72,7 @@ TARGET_LINK_LIBRARIES(test_constant_memory cl_test m) TARGET_LINK_LIBRARIES(test_memory_leak cl_test m) TARGET_LINK_LIBRARIES(test_write_only cl_test m) TARGET_LINK_LIBRARIES(test_perf_report cl_test m) -#TARGET_LINK_LIBRARIES(test_trigo cl_test m) +TARGET_LINK_LIBRARIES(mandelbrot cl_test m) TARGET_LINK_LIBRARIES(mersenneTwister cl_test m) TARGET_LINK_LIBRARIES(blackscholes cl_test m) TARGET_LINK_LIBRARIES(matmul cl_test m) |