~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to Externals/LibXML/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set(name xml)
 
2
project(${name})
 
3
 
 
4
set(libxml_include_dirs
 
5
        ${CMAKE_CURRENT_SOURCE_DIR}/include
 
6
)
 
7
 
 
8
set(libxml_include_dirs ${libxml_include_dirs} PARENT_SCOPE)  # adding include dirs to a parent scope
 
9
 
 
10
set(SRC
 
11
        c14n.c
 
12
        catalog.c
 
13
        chvalid.c
 
14
        debugXML.c
 
15
        dict.c
 
16
        DOCBparser.c
 
17
        encoding.c
 
18
        entities.c
 
19
        error.c
 
20
        legacy.c
 
21
        list.c
 
22
        nanoftp.c
 
23
        nanohttp.c
 
24
        parser.c
 
25
        parserInternals.c
 
26
        pattern.c
 
27
        globals.c
 
28
        hash.c
 
29
        HTMLparser.c
 
30
        HTMLtree.c
 
31
        SAX2.c
 
32
        SAX.c
 
33
        threads.c
 
34
        relaxng.c
 
35
        uri.c
 
36
        valid.c
 
37
        xinclude.c
 
38
        xlink.c
 
39
        xmlIO.c
 
40
        xmlmemory.c
 
41
        xmlmodule.c
 
42
        xmlreader.c
 
43
        xmlregexp.c
 
44
        xmlsave.c
 
45
        xmlstring.c
 
46
        xmlunicode.c
 
47
        xmlwriter.c
 
48
        tree.c
 
49
)
 
50
 
 
51
set(libxml_libs)
 
52
 
 
53
include_directories(
 
54
        ${libxml_include_dirs}
 
55
)
 
56
link_directories(${LIBRARY_OUTPUT_PATH})
 
57
 
 
58
set(TARGET_LIBS)
 
59
 
 
60
opencollada_add_lib(${name} "${SRC}" "${TARGET_LIBS}")