~ubuntu-branches/debian/sid/clamav/sid

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/include/llvm/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Andreas Cadhalpun, Andreas Cadhalpun, Sebastian Andrzej Siewior, Frans Spiesschaert
  • Date: 2014-10-15 06:50:20 UTC
  • mfrom: (1.3.13) (42.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20141015065020-0cpy1hdueggaw35s
Tags: 0.98.5~rc1+dfsg-1
[ Andreas Cadhalpun ]
* Import new upstream release candidate.
* Drop patches included upstream and update the others.
* Add 4 new symbols to libclamav6.symbols.
* Fix debian/copyright.
* Update lintian overrides.
* Update Standards-Version to 3.9.6 (no changes needed).
* Add Breaks and Replaces for old clamd package to clamdscan.
* Remove unnecessary shlibs:Depends from clamav-dbg.
* Add patches to support LLVM 3.5.

[ Sebastian Andrzej Siewior ]
* Add embedded copy of libmspack to be used as fallback, when libmspack-dev
  is not available.

[ Frans Spiesschaert ]
* Updated Dutch Debconf template translation (Closes: #763634)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set(LLVM_TARGET_DEFINITIONS Intrinsics.td)
2
 
 
3
 
tablegen(Intrinsics.gen -gen-intrinsic)
4
 
 
5
 
add_custom_target(intrinsics_gen ALL
6
 
  DEPENDS ${llvm_builded_incs_dir}/Intrinsics.gen)
7
 
 
8
 
set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} intrinsics_gen PARENT_SCOPE)
9
 
 
10
 
if( MSVC_IDE OR XCODE )
11
 
  # Creates a dummy target containing all headers for the benefit of
12
 
  # Visual Studio users.
13
 
  file(GLOB_RECURSE headers *.h)
14
 
  add_td_sources(headers)
15
 
  add_library(llvm_headers_do_not_build EXCLUDE_FROM_ALL
16
 
    # We need at least one source file:
17
 
    ${LLVM_MAIN_SRC_DIR}/lib/Transforms/Hello/Hello.cpp
18
 
    ${headers})
19
 
endif()