C++11: Laid foundation for benchmark tests. We need more of them!

This commit is contained in:
Hans-Christian Ebke
2015-11-19 19:53:36 +01:00
parent 61fe9dabef
commit 3ed7079cb8
8 changed files with 83 additions and 34 deletions

View File

@@ -0,0 +1,11 @@
set (SOURCES "")
list (APPEND SOURCES
main.cpp
VectorT_new.cpp
VectorT_legacy.cpp
)
add_executable(OMBenchmark ${SOURCES})
set_target_properties(OMBenchmark PROPERTIES
INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}/..")
target_link_libraries(OMBenchmark benchmark OpenMeshCore)