Displaying 3 results from an estimated 3 matches for "arg_modul".
Did you mean:
arg_module
2014 Feb 10
2
[LLVMdev] [llvm] r201072 - [CMake] Introduce llvm_add_library().
...look like
'not cmake code' by using llvm_add_library instead of add_library, the cmake
command. Making that wrapper macro also invoke target_link_libraries looks
odd to someone familiar with cmake.
I don't fully know what this wrapper is needed for, but I looked at it a
bit.
if(ARG_MODULE)
set_property(TARGET ${name} PROPERTY SUFFIX ${LLVM_PLUGIN_EXT})
endif()
if(ARG_SHARED)
if (MSVC)
set_target_properties(${name}
PROPERTIES
IMPORT_SUFFIX ".imp")
endif ()
endif()
CMake provides CMAKE_SHARED_MODULE_SUFFIX and CMAKE_IMPORT_LIBRARY_...
2014 Feb 13
2
[LLVMdev] [llvm] r201072 - [CMake] Introduce llvm_add_library().
...ary instead of add_library, the cmake
>> command. Making that wrapper macro also invoke target_link_libraries looks
>> odd to someone familiar with cmake.
>>
>> I don't fully know what this wrapper is needed for, but I looked at it a
>> bit.
>>
>> if(ARG_MODULE)
>> set_property(TARGET ${name} PROPERTY SUFFIX ${LLVM_PLUGIN_EXT})
>> endif()
>>
>> if(ARG_SHARED)
>> if (MSVC)
>> set_target_properties(${name}
>> PROPERTIES
>> IMPORT_SUFFIX ".imp")
>> endif ()
>&g...
2014 Feb 13
2
[LLVMdev] [llvm] r201072 - [CMake] Introduce llvm_add_library().
...rary instead of add_library, the cmake
>> command. Making that wrapper macro also invoke target_link_libraries looks
>> odd to someone familiar with cmake.
>>
>> I don't fully know what this wrapper is needed for, but I looked at it a
>> bit.
>>
>> if(ARG_MODULE)
>> set_property(TARGET ${name} PROPERTY SUFFIX ${LLVM_PLUGIN_EXT})
>> endif()
>>
>> if(ARG_SHARED)
>> if (MSVC)
>> set_target_properties(${name}
>> PROPERTIES
>> IMPORT_SUFFIX ".imp")
>> endif ()
>> endif...