/3rd_party/llvm/runtime/libprofile/CMakeLists.txt
CMake | 19 lines | 17 code | 2 blank | 0 comment | 0 complexity | 6cae4414acd468bc1e42fab757d0b121 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-3-Clause, JSON, MPL-2.0-no-copyleft-exception, GPL-2.0, GPL-3.0, LGPL-3.0, BSD-2-Clause
1set(SOURCES 2 BasicBlockTracing.c 3 CommonProfiling.c 4 GCDAProfiling.c 5 PathProfiling.c 6 EdgeProfiling.c 7 OptimalEdgeProfiling.c 8 Profiling.h 9 ) 10 11add_llvm_library( profile_rt-static ${SOURCES} ) 12set_target_properties( profile_rt-static 13 PROPERTIES 14 OUTPUT_NAME "profile_rt" ) 15 16add_llvm_loadable_module( profile_rt-shared ${SOURCES} ) 17set_target_properties( profile_rt-shared 18 PROPERTIES 19 OUTPUT_NAME "profile_rt" )