add signal-slot benchmark & better graphs
Annotate for file CMakeLists.txt
2009-05-25 tobias 1 find_package(Qt4)
14:59:32 ' 2 set(QT_DONT_USE_QTGUI true)
' 3 include(${QT_USE_FILE})
' 4
2009-06-19 tobias 5 set(CXX_BENCHMARK_SOURCES
15:31:27 ' 6 benchmark.cpp construct.cpp overload.cpp simple-call.cpp signal_slot.cpp)
' 7
' 8 qt4_automoc(signal_slot.cpp)
' 9
2009-05-25 tobias 10 include(CheckCXXCompilerFlag)
14:59:32 ' 11 check_cxx_compiler_flag("-fvisibility=hidden" CXX_VISIBILITY)
' 12 if(CXX_VISIBILITY)
' 13 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
' 14 endif(CXX_VISIBILITY)
' 15
2009-06-19 tobias 16 add_library(cl-smoke-benchmark MODULE ${CXX_BENCHMARK_SOURCES})
2009-05-25 tobias 17 target_link_libraries(cl-smoke-benchmark ${QT_LIBRARIES})