1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

libprofile: [CMake] Let libprofile_rt be not loadable_module but shared library. Autoconf's one does so.

llvm-svn: 162812
This commit is contained in:
NAKAMURA Takumi 2012-08-29 00:37:51 +00:00
parent dff0b7dd23
commit 5c025c67e6

View File

@ -13,7 +13,8 @@ set_target_properties( profile_rt-static
PROPERTIES PROPERTIES
OUTPUT_NAME "profile_rt" ) OUTPUT_NAME "profile_rt" )
add_llvm_loadable_module( profile_rt-shared ${SOURCES} ) set(BUILD_SHARED_LIBS ON)
add_llvm_library( profile_rt-shared ${SOURCES} )
set_target_properties( profile_rt-shared set_target_properties( profile_rt-shared
PROPERTIES PROPERTIES
OUTPUT_NAME "profile_rt" ) OUTPUT_NAME "profile_rt" )