9 lines
240 B
CMake
9 lines
240 B
CMake
add_library(benchmark_base OBJECT
|
|
thread.cpp
|
|
timer.cpp
|
|
benchmark_malloc.cpp
|
|
)
|
|
target_link_libraries(benchmark_base oblib_base malloc_hook)
|
|
oblib_addtest(benchmark.cpp)
|
|
target_link_libraries(benchmark PRIVATE benchmark_base)
|