CMakeLists.txt 380 B

123456789101112131415
  1. add_library(
  2. follybenchmark
  3. Benchmark.cpp
  4. )
  5. target_link_libraries(follybenchmark PUBLIC folly)
  6. apply_folly_compile_options_to_target(follybenchmark)
  7. install(
  8. TARGETS follybenchmark
  9. EXPORT folly
  10. RUNTIME DESTINATION ${BIN_INSTALL_DIR}
  11. LIBRARY DESTINATION ${LIB_INSTALL_DIR}
  12. ARCHIVE DESTINATION ${LIB_INSTALL_DIR}
  13. )
  14. add_subdirectory(experimental/exception_tracer)