CMakeLists.txt 294 B

1234567891011121314
  1. set(Flow_h_files
  2. FlowCalculator.h)
  3. set(Flow_cxx_files
  4. FlowCalculator.cxx)
  5. #---Generate dictionary
  6. ROOT_GENERATE_DICTIONARY(G__Flow
  7. ${Flow_h_files}
  8. LINKDEF LinkDef.h)
  9. #---Create a shared library
  10. add_library(Flow SHARED ${Flow_cxx_files} G__Flow.cxx)
  11. target_link_libraries(Flow Centrality)