• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(SOURCES
2  BasicBlockTracing.c
3  CommonProfiling.c
4  PathProfiling.c
5  EdgeProfiling.c
6  OptimalEdgeProfiling.c
7  Profiling.h
8  )
9
10add_llvm_library( profile_rt-static ${SOURCES} )
11set_target_properties( profile_rt-static
12  PROPERTIES
13  OUTPUT_NAME "profile_rt" )
14
15set(BUILD_SHARED_LIBS ON)
16add_llvm_library( profile_rt-shared ${SOURCES} )
17set_target_properties( profile_rt-shared
18  PROPERTIES
19  OUTPUT_NAME "profile_rt" )
20